"Curso em Vídeo"
This is the student's notebook of Ricardo Barros Becheli
<!DOCTYPE html>
Title
HTML Semantic Elements
Head, header and heading
Paragraph
Formating
Entities
Emojis
Images
Favicon
Mark the text
How to display code
Quotations
Lists
Links
Responsive images
Audio
Video
The names are somewhat alike but their functions are very different.
You see the first two are between angled brackets. That's because they are HTML elements themselves.
Now, "heading", or better, "HTML headings" are titles or subtitles that you want to display on a webpage.
Let's check one by one:
The <head> element is a container for metadata and is placed between the tag and the
tag.The <header> element represents a container for introductory content or a set of navigational links.
A <header> element typically contains:
<h1>
- <h6>
)Note: You can have several <header> elements in one HTML document. However, <header> cannot be placed within a <footer>, <address> or another <header> element.
HTML headings are defined with the <h1>
(defines the most important heading) to <h6>
; (defines the least important heading) tags. And those are the heading elements.
Examples (h1 to h3 colors were CSS modified for this website):