Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Tyler-Pritchard/cab5ee9d63bb5bb32aee7fee6c4bef5b to your computer and use it in GitHub Desktop.
Save Tyler-Pritchard/cab5ee9d63bb5bb32aee7fee6c4bef5b to your computer and use it in GitHub Desktop.
The head tag is used for holding Meta information, title, links, etc. and is not displayed on the page. The header tag is used within the body of the website and can be used multiple times if required, e.g. to determine the top of an article.
Head: contains "meta-data"
met·a·da·ta
/ˈmedəˌdādə,ˈmedəˌdadə/
noun
a set of data that describes and gives information about other data.
Anchor tag help: https://en.ryte.com/wiki/Anchor_Tag
The difference between span and div is that a span element is in-line and usually used for a small chunk of HTML inside a line (such as inside a paragraph) whereas a div (division) element is block-line (which is basically equivalent to having a line-break before and after it) and used to group larger chunks of code.
UL means "unordered list". OL means "ordered list". UL gets you bullet points. OL gets you numbers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment