HTML Flashcards by Eilish

1
Q

What does HTML stand for?

A

HyperText Markup Language

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

Who created HTML?

A

Tim Berners Lee

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

What is the format for most code in HTML?

A

<> >

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

How would you make your text centered?

A

Hello

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

How would you start a paragraph?

A

<p> </p>

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

What is the basic layout for a webpage?

A

Add title here

<h1> Add heading here </h1>

<p> Add paragraph here </p>

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

What is the largest and the smallest heading tags?

A

<h1> is the biggest.

| <h6> is the smallest.</h6></h1>

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

True or false: All of the headings after <h5> are smaller than the paragraph.</h5>

A

True

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

True or false: The tag <h4> will make your heading the same size as your paragraph.</h4>

A

True

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

What type of code would you use to change the style?

A

CSS

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

How would you create a horizontal line on your webpage?

A

<hr></hr>

Please note that you would NOT use an end tag () as that would be incorrect.

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

How would you include an image?

A

<img></img>

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

How would you change the size of an image?

A

Using Height=… and Width=…..

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

What is the tag for a hyperlink?

A

<a>add name of link here (for example: Click here) </a>

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

Where would you add the style tags?

A

In the head.

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

What is the head tag for?

A

The style and formatting.

17
Q

What is the body tag for?

A

The content.

18
Q

What type of code is used inside the style tag?

19
Q

How would you change the font of your paragraph?

A

p{font-family: “add wanted font here”}
Quotation marks are only used if the font contains more than one word.
This must be done inside the style tags, this is not HTML, this is CSS.

20
Q

Who created HTML?

A

Tim Berners Lee

21
Q

What is the format for most code in HTML?

22
Q

How would you make your text centered?

23
Q

How would you make a paragraph?

24
Q

What is the basic layout for a webpage?

A

Add title here

<h1> Add heading here </h1>

<p> Add paragraph here </p>

25
What is the largest and the smallest heading tags?

is the biggest. |

is the smallest.
26
True or false: All of the headings after
are smaller than the paragraph.
True
27
True or false: The tag

will make your heading the same size as your paragraph.

True
28
What type of code would you use to change the style?
CSS
29
How would you create a horizontal line on your webpage?

| **Please note that you would NOT use an end tag > as that would be incorrect.**
30
How would you include an image?
31
How would you change the size of an image?
32
What is the tag for a hyperlink?
33
Where would you add the style tags?
In the head.
34
What is the head tag for?
The style and formatting.
35
What is the body tag for?
The content.
36
What type of code is used inside the style tag?
CSS
37
How would you change the font of your paragraph?
p{font-family: "add wanted font here"} Quotation marks are only used if the font contains more than one word. This must be done inside the style tags, this is not HTML, this is CSS.