html tags Flashcards

1
Q

starting a html webpage

A

<!DOCTYPE html>

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

main tags for webpage

A

<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>

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

table row

A

<tr>
</tr>

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

table data

A

<td>
</td>

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

table heading

A

<th>
</th>

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

table border with double border

A

border-collapse: separate (default)

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

single border table

A

border-collapse: collapse

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

hyperlink tag

A

<a> </a>

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

opens a hyperlink in a new window or tab

A

target= “_blank”

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

opens a hyperlink in the same frame

A

target= “_self”

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

opens a hyperlink in the parent frame

A

target= “_parent”

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

opens a hyperlink in the full body of the window

A

target= “_top”

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

image tag

A

<img></img>

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

text background colour- tomato colour

A

“<h1 style= "background-color:Tomato;"> </h1>”

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

colour of text

A

“<h1 style="color:Tomato;"> </h1>”

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

border colour

A

“<h1 style= "border:2px solid Tomato;"> </h1>”

17
Q

style for changing the font of text

A

font-family: (name of font)

18
Q

style for changing size of font

A

font-size: (size in px)

19
Q

style for border thickness

A

border: (thickness)

20
Q

page background image

A

{background-image: url(‘……….jpg’);}
(in body)

21
Q

background colour

A

background-color:coral;
(in body)

22
Q

rowspan

A

<td>
</td>

23
Q

colspan

A

<td>
</td>