The web site hold my reading notes in code 201.
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
Structural markup:the elements that you can use to describe both headings and paragraphs
Headings HTML has six “levels” of heading.
Paragraphs
Bold & Italic
By enclosing words inthe tags < b> and < /b> we canmake characters appear bold
< i> By enclosing words in the tags < i> and < /i> we can make characters appear .
Superscript & Subscrip
Line Breaks & Horizontal Rules
< br /> if you wanted to add a line break inside the middle of a paragraph you can use the line break tag < br />.
< hr /> tag you can add a horizontal rulebetween sections using the < hr /> tag. _____ Semantic Markup
< strong> The use of the < strong>element indicates that its content has strong importance
< em> the < em> element indicates emphasis that subtly changes the meaning of a sentence
< blockquote> and < q >
Abbreviations & Acronyms:In HTML 4 there was a separate < acronym> element for acronyms. To spell out the full form of the acronym, the title attribute was used (as with the < abbr> element above). HTML5 just uses the < abbr> element for both abbreviations and acronyms
< address>T element has quite a specific use: to contain contact details for the author of the page.
< s> element indicates something that is no longer accurate or relevant (but that should not be deleted)
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.
#### 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.
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