HTML Flashcards
Every page must have one!
<title></title>
Headings
<h1></h1>
… <h6></h6>
Paragraph.
<p></p>
Emphasis and
Strong emphasis.
<em></em>
<strong></strong>
Parts of a document.
<header></header>
<article></article>
<section></section>
<footer></footer>
Anchor
<a></a>
Bullet and numbered lists
<ul></ul>
<ol></ol>
<li></li>
A markup language
A markup language is one that is designed for defining and presenting text. HTML (HyperText Markup Language), is an example of a markup language. Within a text file such as an HTML file, elements are marked up using tags which explain the purpose of that part of the content.
Procedural and Descriptive are too key elements.
HTML: Tags, Elements, Open and Close
<html>
…
</html>
HTML Attributes
<a>
…
</a>
head
<!doctype html>
<title>HTML Example</title>
<meta></meta>
<meta></meta>
body
<header>
<h1>HTML Example</h1>
<p>Matt Dennis
<p>March 2020
</header>
<section>
<h1>Introduction</h1>
<p>Paragraph Text.
<p>Isn't it pretty…?
<em>Less so.</em>
</section>
</p></p></section></p></p></header>
Procedural
What to do.
How it looks.
Not why to do it.
e.g.
<b>words</b>
<hr></hr>
<br></br>
<blink>words</blink>
Descriptive
What it means.
Not how it looks or what to do.
e.g.
<h1>words</h1>
<p>para words
<em>words</em>
</p>
<aside>words</aside>
Stratified
Separates content from presentation.