HTML Flashcards

0
Q

Markup Language

A

A programming language used to turn text into images, links, tables, lists, and much more.

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

HTML

A

Hyper Text Markup Language;

“Text with links in it”

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

CSS

A

Cascading Style Sheets

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

<!DOCTYPE html>

A

This tag goes on the first line of the document to tell the browser what type of language to expect.

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

These tags start and finish your HTML document.

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

Tags

A

What you find inside of the symbols < and >.

e.g., , <p></p>, etc.

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

Nested tags

A

Tags that function within other tags to modify it.

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

What are the two parts to the HTML file?

A

The head and the body;

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

The Head

A

;

This contains information about the HTML file, such as the title.

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

The Body

A

;

This is where you enter the content of your webpage, such as text, images, links, etc. The content is what is visible on your webpage.

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

Paragraph

A

<p></p>

;

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

Heading Tags

A
Heading text.  There are 6 sizes to choose.
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Link

A

<a>type the text you’d like to display</a>

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

Images

A

<img></img>

Notice that you do not need a separate closing tag. The img tag closes itself.

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

Image as link

A

You can create a link with an image by nesting an img tag inside of a link tag.

<a><img></img></a>

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