Flow Coding

Code With The Flow

downarrow

Introduction

This website will teach you general web development by using languages HTML and CSS. It will also teach you the logistics of the World Wide Web and the Internet. Sithum and Daniel has dedicated their time towards teaching you step by step how to have a neat web page with the use of HTML as well as bit of aesthetic style with CSS. Start coding with the Flow.


The World Wide Web

The World Wide Web (known as the WWW) is an space where documents and other web resources are identified by Uniform Resource Locators (URLs). These resources are linked through the use of hypertext links. These links are found from networks which link up the whole entire web to what we know as the internet. These networks aid search engines to find different URLs to be seen by the consumer. The World Wide Web, or just "the Web," as ordinary people call it, is a subgroup of the Internet. The Web consists of pages that can be accessed using a Web browser. The Internet is the actual network of networks where all the information resides With hypertext, a word or phrase can contain a link to another Web site. All Web pages are written in the hypertext markup language (HTML), which works in conjunction with HTTP, which is the hypertext protocol.

Hypertext Markup Language

Hypertext Markup Language or more commenly known as HTML is a fairly simple language made up of elements. These elements can be applied to pieces of text to give them different meaning in a document (is it a paragraph? is it a bulleted list? is it part of a table?), structure a document into logical sections (does it have a header? three columns of content? a navigation menu?) and embed content such as images and videos into a page. HTML elements are the building blocks of HTML pages and HTML elements are represented by tags. Browsers do not display the HTML tags, but use them to render the content of the page. When a browser opens an HTML file, the browser will look for HTML codes in the text and use them to change the layout, insert images, or create links to other pages.

Cascading Style Sheets

CSS or Cascading Style Sheets is the is a language that describes the style of an HTML document. This shows how the webpage will be viewed aesthetically. CSS is extremely effective for preserving time with formatting. This is designed to enable the separation of presentation and content, including layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate .css file, and reduce complexity and repetition in the structural content. The final stage of the Flow.