HTML Flashcards

1
Q

Tag for the root of the document

A

<!DOCTYPE html>

<html>
Rest of code inside
</html>

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

Tag for the head (description)

A

<head>
Title inside
</head>

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

Tag for the title

A

<title>
Text inside
</title>

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

Tag for the body (main section)

A

<body>
Main section inside
</body>

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

Tag for largest heading size

A

<h1>Text</h1>

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

Tag for smallest heading size

A

<h6>Text</h6>

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

Tag for a paragraph (standard text)

A

<p>
Text inside
</p>

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

Tag for italics

A

<i> text </i>
Or
<em> text </em>

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

Tag for bold

A

<b> text </b>
Or
<strong> text </strong>

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

Tag for line break

A

text <br></br> text

This displays wrong. Ignore closing br tag

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

Tag to centre text

A

<center>Text</center>

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

Tag for horizontal rule

A

<hr></hr>

This displays wrong. Ignore closing hr tag

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

Definition and tag for block quote

A

Specifies a section quoted from another source. Browsers usually source quotes

<blockquote>
Text inside
</blockquote>

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

Tag for ordered list

A

<ol>
List entries
</ol>

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

Tag for unordered list

A

<ul>
List entries
</ul>

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

Tag to define list items

A

<li>text</li>

17
Q

Tag for anchor (website link)

A

<a href=“website link”> text displayed </a>

18
Q

Tag for mailto (email address)

A

<a href=“mailto:email address”> text displayed </a>

19
Q

Tag for image

A

<img></img> </img src=”image link” alt=”text displayed” width=”…” height=”…”>

This displays wrong. Ignore the first img tag and slash in the actual tag

20
Q

Tag for underline

A

<u> text here </u>