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?

A

CSS

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?

A

<> >

22
Q

How would you make your text centered?

A

Hello

23
Q

How would you make a paragraph?

A

<p> </p>

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
Q

What is the largest and the smallest heading tags?

A

<h1> is the biggest.

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

26
Q

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

A

True

27
Q

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

A

True

28
Q

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

A

CSS

29
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.

30
Q

How would you include an image?

A

<img></img>

31
Q

How would you change the size of an image?

A

<img></img>

32
Q

What is the tag for a hyperlink?

A

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

33
Q

Where would you add the style tags?

A

In the head.

34
Q

What is the head tag for?

A

The style and formatting.

35
Q

What is the body tag for?

A

The content.

36
Q

What type of code is used inside the style tag?

A

CSS

37
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.