TOPIC 3 Flashcards

1
Q

This tag causes text between the tags to be displayed in bold

A

<b></b>

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

This tag causes the text to be displayed in italic.

A

<i></i>

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

This tag causes the text to be displayed with an underline.

A

<u></u>

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

Changes the font properties of the text between the tags.

A

<font></font>

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

Sets which font is used, e.g. <font face=”Arial”></font>

A

Face

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

Sets the font size, e.g. <font size=“72”></font>

A

Size

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

Sets the font color, e.g. <font color=“red”></font>

A

color

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

Defines contact information for the author/owner of a document/article

A

<address>
</address>

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

Italicized and defines emphasized text

A

<em></em>

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

Defines smaller text

A

<small></small>

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

Bolds and defines important text

A

<strong></strong>

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

Defines subscripted text

A

< sub >

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

Defines superscripted text

A

< sup >

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

An HTML tag used to create scrolling text or an image.

A

<marquee>
</marquee>

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

Allows you to create multiple spaces that are visible on a web page.

A

&nbsp Non-Breaking Space.

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

You can specify color names directly like green, blue or red.

A

Color names

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

This value is specified using the rgb( ) property.

A

Color decimal or percentage values

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

A six-digit code representing the amount of red, green, and blue that makes up the color.

A

Hex Colors

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

An HTML table is defined with the _______.

A

<table> tag
</table>

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

Each table row is defined with the _______

A

<tr> tag.
</tr>

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

A table header is defined with the _______

A

<th> tag
</th>

22
Q

By default, _______ are bold and centered.

A

table headings

23
Q

A table data/cell is defined with the _______

24
Q

Defines a table.

A

<table>
</table>

25
Q

Defines a table caption.

A

<caption>
</caption>

26
Q

Groups the header content in a table.

A

<thead>
</thead>

27
Q

Groups the body content in a table.

A

<tbody>
</tbody>

28
Q

Defines a row in a table.

29
Q

Defines a header cell in a table.

30
Q

Defines a cell in a table.

31
Q

To make a cell span more than
one column, use the colspan attribute.

A

< th colspan >

32
Q

To make a cell span more than one row, use the ______ attribute.

A

< th rowspan >

33
Q

An inline frame is used to embed another document within the current HTML document.

A

<iframe></iframe>

34
Q

The tag specifies a section that is quoted from another source. Browsers usually indent elements.
With the cite attribute, the programmer can set the reference for the quote.

A

Blockquote tag or <blockquote></blockquote>

35
Q

these are crucial for displaying text and symbols correctly.

A

Character sets and Special Characters

36
Q

All modern computer languages use the ________ character set a default.

37
Q

The encoding for the early web was ______.

38
Q

____ used 7 bits for the character and could only represent 128 different characters (English letters).

39
Q

It was first character set in Windows. It was a copy of ASCII but used 8-bits to represent 256 different characters (international letters). It is supported by all browsers.

A

Windows-1252

40
Q

The HTML5 specification encourages web developers to use the UTF-8 character set. Kindly define it inside the ______.

41
Q

These like mathematical operators, arrows, technical symbols and shapes, are not present on a normal keyboard. To add these symbols to an HTML page, you can use the HTML entity name.
If no entity name exists, you can use the entity number.
If the character does not have an entity name, you can use a decimal (or hexadecimal) reference.

42
Q

It is nothing more than a container unit that encapsulates other page elements and divides the HTML document into sections.

A

DIV tag < div >

43
Q

Web developers use _______ elements to group together HTML elements and apply CSS styles to many elements at once.

44
Q

has no required attributes, but style, class and id are common.

45
Q

is often used to group sections of a web page together.

46
Q

clearly describes its meaning to both the browser and the developer.

A

Semantic Tag

47
Q

Examples of semantic elements: ______, _____, and _____ Clearly defines its content.

A

< form >, < table >, and < article >

48
Q

Examples of non-semantic elements: ____ and ____ Tells nothing about its content.

A

< div > and < span >

49
Q

What are the semantic elements

A

< div id=”nav” >
< div class=”header” >
< div id=”footer” > to indicate navigation, header, and footer.

50
Q

uses a variety of attributes that are applied to different tags to provide additional information or modify the behavior of elements.

A

HTML (Hypertext Markup Language)