HTML Text

The web site hold my reading notes in code 201.

HTML Text


When creating a web page, you add tags (known as markup) to the contents of the page. These tags provide extra meaning and allow browsers to show users the appropriate structure for the page

Semantic

paragraph

sub and sup


Introducing CSS

CSS allows you to create rules that specify how the content of an element should appear.

CSS works by associating rules with HTML elements. These rules govern how the content of specified elements should be displayed. A CSS rule contains two parts: a selector and a declaration. CSS type

css proprties


#### Basic JavaScript Insruction

statement:series of instructions that a computer can follow one-by-one. Each individual instruction or step is known as a statement. Statements should end with a semicolon.

You should write comments to explain what your code does. they help make your code easier to read and understand. This can help you and others who read your code.

var

Sometimes you will want to use a double or single quote mark within a string. Because strings can live in single or double quotes, if you just want to use double quotes in the string, you could surround the entire string in single quotes. If you just want to use single quotes in the string, you could surround the string in double quotes

**RULES FOR NAMING VARIABLES**


Decisions and loops