Beginner HTML Flashcards
Your first step towards becoming fluent in HTML.
1
Q
comment (does not appear)
A
<!–text–>
3
Q
bold
A
<b>text</b>
text
4
Q
big
A
<big>text</big>
<big>text</big>
5
Q
body (the body of the page)
A
<body>text</body>
6
Q
line break
A
text
more text
text
more text
7
Q
center
A
text
text
8
Q
font
A
three <font face=”Times New Roman”>blind </font>mice
threeblindmice
9
Q
heading
A
<hl>top heading</hl>
top heading
10
Q
head (does not appear)
A
<head>description of page</head>
11
Q
horizontal line
A
<hr />
12
Q
html
A
<html>all the rest of the code</html>
13
Q
italics
A
<i>text</i>
text
14
Q
image
A
15
Q
list
A
<li>text</li>
<li>more text</li>
- text
- more text