How do you identify the page as HTML?
What is the first thing you put on the page?
<!DOCTYPE html>
What tag do you put for the name at the top?
What goes inside the “” tags?
What tag do you put for the main writing on the page?
What tags are for a body heading?
<h1> </h1>
; <h2> </h2>; <h3> </h3>; <h4> </h4>; <h5> </h5>; <h6> </h6>
(In order of biggest to smallest)
How do you put images into your body?
<img></img>
“img” is the tag and “src” is the attribute
What do you write to make a hypertext link?
<a> </a>
“a” is the tag and “href” is the attribute