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