3. Why Learn HTML?
1. Running a blog on a CMS.
2. Working with a developer and
want to understand how to talk
with them
3. Web designer looking to
understand how things get built
4. What We’ll Learn
1. What is HTML
2. How to mark up a
document
3. How a page is
structured
10. Anatomy of a Tag
<tag>Text</tag>
Start Tag EndTag
11. About 80 Tags
a
abbr
acronym
address
area
b
base
bdo
big
blockquote
body
br
button
caption
c i t e
code
col
colgroup
dd
del
dfn
div
d l
DOCTYPE
dt
em
f ieldset
form
h1, h2, h3,
h4, h5, and
h6
head
html
hr
i
img
input
ins
kbd
label
legend
l i
l i n k
map
meta
noscript
object
o l
optgroup
option
p
param
pre
q
samp
script
select
small
span
strong
style
sub
sup
table
tbody
td
textarea
t f o o t
th
thead
t i t l e
t r
t t
u l
var
12. Some Are Used More Often
a
abbr
acronym
address
area
b
base
bdo
big
blockquote
body
br
button
caption
c i t e
code
col
colgroup
dd
del
dfn
div
d l
DOCTYPE
dt
em
f ieldset
form
h1, h2, h3,
h4, h5, and
h6
head
html
hr
i
img
input
ins
kbd
label
legend
l i
l i n k
map
meta
noscript
object
ol
optgroup
option
p
param
pre
q
samp
script
select
small
span
strong
style
sub
sup
table
tbody
td
textarea
t f o o t
th
thead
t i t l e
t r
t t
ul
var
28. Absolute Links
Absolute links point
directly to the destination.
<a href=“http://foo.com”>Text</a>
Typicallystartswitthhttp://
29. Relative Links
Relative links are based on
where the destination is
from where you are.
<a href=“/folder/page.html”>Text</a>
<a href=“../page.html”>Text</a>