exam 1 Flashcards

(15 cards)

1
Q

meta formatting

A

meta name=”author/keywords” content=””

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

format for a link to a heading with the id “heading1”

A

<p><a>First Heading</a></p>

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

format for heading level 1 with id heading one

A

<h1>This is</h1>

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

code for img that links to vt website

A

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

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

ordered list syntax

A

<ol>
<li>First</li>
<li>Second</li>
</ol>

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

format for a table with header and body

A

<table>
<thead>
<th>First Name</th>
</thead>
<tbody>
<tr>
<td>John</td>
</tr>
</tbody>
</table>

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

copyright symbol

A

©

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

start and end of form

A

<form>
</form>

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

basic text input

A

<label>Name:</label>
<input></input>

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

bigger text area input

A

<label>Comments:</label>

<textarea></textarea>

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

the syntax for basic text input is the same for

A

email

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

checkbox

A

label here
<label>Site Design
<input></input>
</label>

<label>Links
<input></input>
</label>

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

selection/rating (drop down options)

A

label here
<select>
<option>1</option>
<option>2</option>
</select>

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

submit and reset

A

<input></input>
<input></input>

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

absolute positioning for an image with id=”titlebackground”

A

titlebackground {

 position: absolute;
 left: 100px;
 top: 50px;
 z-index: 0
 }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly