Basic Concepts Flashcards

Review the basics of HTML

1
Q

Set the language?

A

< html lang=”en” >

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

Set up overall settings for a document?

A

< head > </ head >

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

Sets character set?

A

< meta charset=”utf-8” >

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

Set title for tab in explorer?

A

My Page

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

< link rel=”stylesheet” href=”Smells Like Bakin/css/normalize.css” type=”text/css” media=”screen” >

A

EXTERNAL: the “link rel” are links to other types of files used. Order specific.

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

Allows you to script in another language

A

< script type=”text/javascript” > </ script >

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

< style type=”text/css” > < /style >

A

INTERNAL: below style type is a mock up type of CSS not for permanent use

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

Body tag contains the main body of text used throughout the webpage

A

< body >

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

Headline tag - six different levels of headline tag

A

<h1> <h2> ...
</h2></h1>

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

Paragraph Text

A

<p>
</p>

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

Emphasis on encompassed text

A

<em></em>

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

Have a horizontal line ruler

A

<hr></hr>

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

<blockquote>
</blockquote>

A

Citation of quote used

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

Set a break

A

<br></br>

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

Preformatted text

A

<pre>
</pre>

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

Let user know that the line is code

A

<code></code>

17
Q

Sets address in italics

A

<address>
</address>

18
Q

Only have a break in URL if not enough space

A

< wbr >

19
Q

Ordered and Unordered lists

A

<ol> <ul>
</ul></ol>

20
Q

Definition Lists, Definition Titles and Definition descriptions

A
<dl>
	<dt>Video Pros</dt>
	       <dd>Jon</dd>
	       <dd>Tom</dd>
	<dt>Teachers</dt>
	       <dd>Bob</dd>
</dl>
21
Q

<a>My Link</a>

<br></br>

<a>Go Back</a>

A
  • ANCHOR TAGS: creating links
  • id gives identifier, while href gives a reference of where to go
  • can also use URLs in href
22
Q

<p>Here are some flowers</p>

<img src="flowers.jpg" alt="Flowers blooming in the warm sunlight" title="Flowers blooming in the warm sunlight"> 

<p>Aren't they nice?</p>

A

Images

23
Q

< iframe width=”300” height=”300” src=”anotherpage.html” > < /iframe >

A

Frame that has another webpage insert

24
Q

< thead > < tfoot > < tr > < td > < th >

A

TABLES: tr: table row. td: table data. th: table headers