HTML Basic Functions Flashcards

0
Q

How do you identify the page as HTML?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

What is the first thing you put on the page?

A

<!DOCTYPE html>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What tag do you put for the name at the top?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What goes inside the “” tags?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What tag do you put for the main writing on the page?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you put images into your body?

A

<img></img>

“img” is the tag and “src” is the attribute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What do you write to make a hypertext link?

A

<a> </a>

“a” is the tag and “href” is the attribute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly