Skip to Navigation
< Return to Ferrigan Design Websites Page

Lesson 12 Final Exam Project

HTML Cheatsheet

Sectioning

A semantic element for creating standalone sections in a web page.

<body></body>
/* represents the content of the document */
<article></article>
/* represents a complete, or self-contained, composition in a document, page, application, or site and that can be reused */
<section></section>
/* represents a generic section of a document or application */
<nav></nav>
<ul><li><a href="page1.html">Link 1</a></li>...</ul> /* lists of links intended to be used for website or page content navigation */
<aside></aside>
/* represents a section of a page that consists of content that is tangentially related to the content around it and which could be considered separate from that content */
<h1></h1>, <h2></h2>, <h3></h3>, <h4></h4>, <h5></h5>, <h6></h6>
/* represents section headings */
<header></header>
<h1></h1> /* contains a group of introductory or navigational aids */
<footer></footer>
/* typically contains information about its section, such as who wrote it, links to related documents, and copyright data */