Show navigation

Markup Pt 2: documents, semantics, layout

This week we'll learn about all the components of a full HTML file, HTML5 semantic elements, accessibility, block/inline elements and more complex elements including 'img' and 'table'.

Last week you submitted a Codepen link. This week is different. You have to use a code editor (for example, Sublime Text Opens in a new window) to create an HTML file, and then upload that to Blackboard.

Here's today's lab work:

  1. Create a document with extension '.html'
  2. Add a doctype declaration
  3. Add an html element (with the required attribute!)
  4. Inside your html element, add a head element, and a body element.
  5. Inside your head element, add a title and the charset.
  6. Inside your body element, add a header, main, and footer.
  7. Inside the header, add the document's title. What's a good element for that?
  8. Also inside the header, add an image that might work as your 'hero' image. Don't worry about copyright attribution for now. Just make sure to add appropriate alternative text.
  9. Inside your main, create a table called 'favourites'. Put some of your favourite things in the table. Make sure to give your columns the appropriate headings. Throw an inline element in there while you're at it.
  10. Inside the foot, put the copyright symbol, the current year, and your name.

Appendix:
Elements we talked about today

elementdescriptionexampleresult
htmlThe whole document (except the DOCTYPE declaration).<html>(the whole document)</html>No visual rendering, but it makes your document work!
headThe document head.<head>(information about the document)</head>No visual rendering, but it makes your document work!
bodyThe document body.<body>(content of the document)</body>Nothing by default - you've gotta add some content!
metaInformation about the document.<meta charset='utf‑8'>Again, no visual rendering, but important to make your document function.
imgAn image.<img src='https://bit.ly/3mnhyFC' alt='Baby Yoda drinking baby coffee.'>Baby Yoda drinking baby coffee.
headerA document header.<header>There's no default styling on these.</header>
There's no default styling on these.
footerA document footer.<footer>These are really not that exciting.</footer>
These are really not that exciting.
navA navigation section for internal or external links<nav><ul><li><a href='/page-1/'>Page 1</a></li><li><a href='/page-2/'>Page 2</a></li></ul></nav>
mainA document's main content.<main>Seriously, not exciting.</main>
Seriously.
asideContent that is tangential to the main content.<aside>These all look the same by default, but have meaningful differences to the services and clients that render them.</aside>
sectionWhen the content can be divided. Are you using an h2 or h3 tag? It's probably a separate section.<section>This will make more sense when we're using CSS, I think.</section>
This will make more sense when we're using CSS, I think.
divGeneric block-level element<div>I need to be separated from other content, but not in a way that's described by an existing semantic element.</div>
I need to be separated from other content, but not in a way that's described by an existing semantic element.
spanGeneric inline elementWhile in line with other content, <span>I'm still distinct</span>.While in line with other content, I'm still distinct.
tableA table for displaying data<table><tr><td>A table can</td><td>be this simple</td></tr></table>
A table canbe this simple
trA table row.<table><tr><td>A table row</td><td>for table cells</td></tr></table>
A table rowfor table cells
tdA data cell in a table.<table><tr><td>This table row</td><td>contains 2 data cells</td></tr></table>
This table rowcontains 2 data cells
thA heading cell in a table.<table><tr><th>What?</th><th>Contained?</th></tr><tr><td>This table row</td><td>contains 2 data cells</td></tr></table>
What?Contained?
This table rowcontains 2 data cells
theadA table heading.<table><thead><tr><th>What?</th><th>Contained?</th></tr></thead><tbody><tr><td>This table row</td><td>contains 2 data cells</td></tr></tbody></table>
What?Contained?
This table rowcontains 2 data cells
tbodyA table's body content.<table><thead><tr><th>What?</th><th>Contained?</th></tr></thead><tbody><tr><td>This table row</td><td>contains 2 data cells</td></tr></tbody></table>
What?Contained?
This table rowcontains 2 data cells
tfootA table's body content.<table><tbody><tr><td>This table row</td><td>contains 2 data cells</td></tr></tbody><tfoot><tr><td>Supplemental info</td><td>Usually.</td></tr></tfoot></table>
This table rowcontains 2 data cells
Supplemental infoUsually.
Markup Pt 2: documents, semantics, layoutThis week we'll learn about all the components of a full HTML file, HTML5 semantic elements, accessibility, block/inline elements and more complex elements including 'img' and 'table'.