Skip to content

Instantly share code, notes, and snippets.

@evanmarkowitz
evanmarkowitz / EvanMarkowitz_PreWork.md
Last active March 6, 2019 01:05
EvanMarkowitz_PreWork.md

Day 1

  1. HTML Describes the structure of the page.
  2. An Element is made up of two tags. While the element tells the browser information about a certain section of code, the tag is the tool to wrap the element.
  3. Attributes give us more information about the element. The name tells us the type of information and the value tells us what the information is.
  4. The body is everything that is shown in the browser. The head is information about the page. The title is shown at the top of the browers above the url.
  5. View - Developer Tools - View Source
  6. <h1> Header <b> bold font <i> italic font <q> quote <address> physical address
  7. Empty elements have no words between the elements. eg: <hr />
  8. Semantic Markups should not affect the structure of the page but give more information to the browser.