HTML + CSS Flashcards

(16 cards)

1
Q

What is HTML

A

script that webpages are written in that allows a browser to interpret and render a webpage for the viewer.

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

All code written within these tags is interpreted as HTML

A

<html>
</html>

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

Defines the content in the main browser content area

A

<body>
</body>

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

Used to link to additional files, like CSS stylesheets

A

<link></link>

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

Defines the browser tab or window heading area

A

<head>
</head>

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

Defines the text that appears with the tab or window heading area

A

<title>
</title>

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

Heading styles in decreasing sizes

A

<h1>, <h2>, <h3>
</h3></h2></h1>

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

A paragraph separated with a line space above and below

A

<p>
</p>

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

Self closing tag used for images

A

<img></img>

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

Code to display an image called pic.png with the width and height as 100px

A

<img></img>

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

Tag defining a hyperlink with location parameters

A

<a> (anchor tag)</a>

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

Display a word called link with the link link.com

A

<a> Link </a>

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

Ordered list

A

<ol>
</ol>

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

Make an ordered list with 1,2,3

A

<ol>
<li> 1 </li>
<li> 2 </li>
<li> 3 </li>
</ol>

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

unordered list

A

<ul>
</ul>

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

Link with a CSS style sheet called styles.css

A

<head>
<a>
</head>
</a></head>