View on GitHub

reading-notes

How People Access The Web

How Websites Are Created :

How websites are created

How the Web Works :

How the Web Works


HTML Uses Elements to Describe the Structure of Pages :

Each element has an opening tag and a closing tag.<opening>writing what i want</closing>

Elements

Head , Body , Title

Head,Body,Title


Creating a Web Page on a PC :

notepad


The Evolution of HTML :

The difference between an ID and a class is that an ID can be used to identify one element, whereas a class can be used to identify more than one.


Grouping Text & Elements In a Block:


Information About Your Pages :

meta


header

footer


Site map :

allow you to plan the structure of a site.

The aim is to create a diagram of the pages that will be used to structure the site. This is known as a site map and it will show how those pages can be grouped.

site map

Wireframe :

allow you to organize the information that will need to go on each page.

The wireframes make design easier because you know what information needs to appear on which page before considering how the the page should look.

wireframe


Visual hierarchy refers to the order in which your eyes perceive what they see. It is created by adding visual contrast between the items being displayed. Items with higher contrast are recognized and processed first.


The ABC Of Programming

ABC


A script is a series of instructions that a computer can follow to achieve a goal.

Computers approach tasks in a different way than humans, so your instructions must let the computer solve the task prggrammatically.

SKETCHING OUT THE TASKS IN A FLOWCHART :

To approach writing a script, break down your goal into a series of tasks and then work out each step needed to complete that task

flowchart


HOW A BROWSER SEES A WEB PAGE

  1. RECEIVE A PAGE AS HTML CODE.

Htmlcode

  1. CREATE A MODEL OF THE PAGE AND STORE IT IN MEMORY

modelOfPage

  1. USE A RENDERING ENGINE TO SHOW THE PAGE ON SCREEN.

Rendering


HOW HTML, CSS, & JAVASCRIPT FIT TOGETHER


LINKING TO A JAVASCRIPT FILE FROM AN HTML PAGE :

javascript