HTML Flashcards

1
Q

What does HTML stand for?

A

Hyper Text Markup Language

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

What is HTML?

A

The language used to create webpage content

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

What is CSS?

A

The language used to style and format webpage content

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

What does CSS stand for?

A

Cascading Style Sheets

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

What is a web browser?

A

The programs used to view webpages

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

What is the HTML code for making paragraphs?

A

<p> </p>

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

What is the HTML code for making a large heading?

A

<h1> </h1>

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

What is the HTML code for making a small heading?

A

<h6> </h6>

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

What is HTML code for adding hyperlinks?

A

<a href = “…”> search </a>

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

What is the HTML code for breaking a line?

A

<br></br>

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

What is the HTML code that allows text to be added?

A

<body> </body>

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

What is the HTML code that allows you to change the font, colour and size of text?

A

<style>

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

What is the HTML code for making an unordered list?

A

<ul> </ul>

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

What is the HTML code for making an ordered list?

A

<ol> </ol>

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

What is the HTML code for listing items?

A

<li> </li>

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

What is the HTML code for putting the text in the centre of the page?

A

{text-align:centre}

17
Q

What is the HTML code for changing the font of the text on the page?

A

{font-family:…>

18
Q

What is the HTML code for making the text on the page bigger or smaller?

A

{font-size: …px}

19
Q

What is the HTML code for changing the colour of something?

A

{color:blue}

20
Q

What is the HTML code for changing the background colour of a webpage?

A

{background-color: …}