<head> |
Head |
Defines HTML information that the browser will use to apply to the site but will not display. Should include links to CSS stylesheet(s) and API integration |
<body> |
Body |
Defines HTML that the browser will display. This is the viewable content of the site |
<link> |
Link |
Self closing link to external data source. Requires href= to specify source as URL or local/hosted folder source |
<a> |
Anchor |
Link element, requires href= to specify location as URL or page class. |
<table> |
Table |
Table declaration |
<tr> |
Table Row |
Sets the start of each table row. Data must be contained within children <td> cells |
<span> |
Span |
Used to separate out sections of text within paragraphs/headings etc which require alternate schemes in CSS |
<section> |
Section |
Semantically correct HTML divider for page content. Use <article> and <p> for further division |