HTML5/CSS3 Flashcards

1
Q

doctype tag

A

First instruction of html page that notifies the browser what kind of page is being created. Begins with ! i.e (!doctype html)

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

html tags

A

mark out the entire page as html content. typically go around the whole page of html document

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

head tag

A

controls how the page will be used and sets up the page. contains instructions that don’t appear on the viewable page.

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

body tag

A

contains all the viewable content that a user will see.

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

meta tag

A

page meta data instructions for a browser

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

title tag

A

sets up title for web page that doesn’t appear on the page. appears in browser tab. also used as bookmark.

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

less than exclamation point dash dash text dash dash greater than

A

creates comments in html code

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

<h1>A Heading</h1>

A

heading tag. 6 total heading tag numbers which render different heading sizes.

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

<p></p>

A

paragraph tags to break up text into paragraphs.

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

<br></br>

A

line break tag. self closing.

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

<strong></strong>

A

bold tag

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

<em></em>

A

italics tag

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

aside tag

A

Indent block of text to be a side note

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

section tag

A

tag for semantically separating text in html. browser compilers can interpret to separate text.

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

<ol> tag</ol>

<li>
</li>

A

ordered list tag. lists appear as numbers.

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

<ul> tag</ul>

A

unordered list tag. list appears as bulleted.