curriculum/challenges/english/blocks/review-semantic-html/671a83934b61f64cefe87a61.md
h1 element is the highest level of heading and the h6 element is the lowest level of heading.center, big and font elements.header, nav, figure.:::interactive_editor
<header>
<h1>CatPhotoApp</h1>
<p>Welcome to our cat gallery.</p>
</header>
:::
:::interactive_editor
<main>
<section>
<h2>Cat Photos</h2>
<p>Browse adorable cat pictures.</p>
</section>
</main>
:::
:::interactive_editor
<section>
<h2>About Me</h2>
<p>Hi, I am Jane Doe and I am a web developer.</p>
</section>
:::
nav) element: represents a section with navigation links.:::interactive_editor
<nav>
<ul>
<li><a href="#photos">Photos</a></li>
<li><a href="#videos">Videos</a></li>
</ul>
</nav>
:::
:::interactive_editor
<figure>
<figcaption>Cats <strong>hate</strong> other cats.</figcaption>
</figure>
:::
em) element: marks text that has stress emphasis.:::interactive_editor
<p>
Never give up on <em>your</em> dreams.
</p>
:::
i) element: used for highlighting alternative voice or mood, idiomatic terms from another language, technical terms, and thoughts.:::interactive_editor
<p>
There is a certain <i lang="fr">je ne sais quoi</i> in the air.
</p>
:::
The lang attribute inside the open i tag is used to specify the language of the content. In this case, the language would be French. The i element does not indicate if the text is important or not, it only shows that it's somehow different from the surrounding text.
strong) element: marks text that has strong importance.:::interactive_editor
<p>
<strong>Warning:</strong> This product may cause allergic reactions.
</p>
:::
b) element: used to bring attention to text that is not important for the meaning of the content. It's commonly used to highlight keywords in summaries or product names in reviews.:::interactive_editor
<p>
We tested several products, including the <b>SuperSound 3000</b> for audio quality, the <b>QuickCharge Pro</b> for fast charging, and the <b>Ecoclean Vacuum</b> for cleaning. The first two performed well, but the <b>Ecoclean Vacuum</b> did not meet expectations.
</p>
:::
dl) element: used to represent a list of term-description groupings.dt) element: used to represent the term being defined.dd) element: used to represent the description of the term.:::interactive_editor
<dl>
<dt>HTML</dt>
<dd>HyperText Markup Language</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets</dd>
</dl>
:::
blockquote) element: used to represent a section that is quoted from another source. This element has a cite attribute. The value of the cite attribute is the URL of the source.:::interactive_editor
<blockquote cite="https://www.freecodecamp.org/news/learn-to-code-book/">
"Can you imagine what it would be like to be a successful developer? To have built software systems that people rely upon?"
</blockquote>
:::
cite) element: used to attribute the source of the referenced work visually. Marks up the title of the reference.:::interactive_editor
<div>
<blockquote cite="https://www.freecodecamp.org/news/learn-to-code-book/">
"Can you imagine what it would be like to be a successful developer? To have built software systems that people rely upon?"
</blockquote>
<p>
-Quincy Larson, <cite>How to learn to Code and Get a Developer Job [Full Book].</cite>
</p>
</div>
:::
q) element: used to represent a short inline quotation.:::interactive_editor
<p>
As Quincy Larson said,
<q cite="https://www.freecodecamp.org/news/learn-to-code-book/">
Momentum is everything.
</q>
</p>
:::
abbr) element: used to represent an abbreviation or acronym. To help users understand what the abbreviation or acronym is, you can show its full form, a human readable description, with the title attribute.:::interactive_editor
<p>
<abbr title="HyperText Markup Language">HTML</abbr> is the foundation of the web.
</p>
:::
address) element: used to represent the contact information.time) element: used to represent a date and/or time. The datetime attribute is used to translate dates and times into a machine-readable format.:::interactive_editor
<p>
The reservations are for the <time datetime="20:00">20:00 </time>
</p>
:::
datetime) attribute: used to represent dates and times in a machine-readable format. The standard format is YYYY-MM-DDThh:mm:ss, with the capital T being a separator between the date and time.sup) element: used to represent superscript text. Common use cases for the sup element would include exponents, superior lettering and ordinal numbers.:::interactive_editor
<p>
2<sup>2</sup> (2 squared) is 4.
</p>
:::
sub) element: used to represent subscript text. Common use cases for the subscript element include chemical formulas, footnotes, and variable subscripts.:::interactive_editor
<p>
CO<sub>2</sub>
</p>
:::
code) element: used to represent a fragment of computer code.pre) element: represents preformatted text:::interactive_editor
<pre>
<code>
body {
color: red;
}
</code>
</pre>
:::
u) element: used to represent a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation.:::interactive_editor
<p>
You can use the unarticulated annotation element to highlight
<u>inccccort</u> <u>spling</u> <u>issses</u>.
</p>
:::
ruby) element: used for annotating text with pronunciation or meaning explanations. An example usage is for East Asian typography.rp) element: used as a fallback for browsers lacking support for displaying ruby annotations.rt) element: used to indicate text for the ruby annotation. Usually used for pronunciation, or translation details in East Asian typography.:::interactive_editor
<ruby>
明日 <rp>(</rp><rt>Ashita</rt><rp>)</rp>
</ruby>
:::
s) element: used to represent content that is no longer accurate or relevant.:::interactive_editor
<p>
<s>Tomorrow's hike will be meeting at noon.</s>
</p>
<p>
Due to unforeseen weather conditions, the hike has been canceled.
</p>
:::
href="#id" on an a element and giving the destination element the same id. This is commonly used for skip links, table of contents, or long pages with multiple sections.:::interactive_editor
<a href="#about-section">Go to About Section</a>
<section id="about-section">
<h2>About</h2>
<p>This is the about section of the page.</p>
</section>
:::
Review the Semantic HTML topics and concepts.