jdfjds Flashcards

1
Q

The standard language for creating web pages.

A

HTML

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

is the standard language for creating webpages. It is used to structure content on the web and to add elements like text, images, links, and more.

A

HTML

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

not a programming language but a markup language that defines the structure of web pages.

A

HTML

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

allows us to display content on a web browser, making it essential for any website.

It is the foundation of every webpage you visit.

A

HTML

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

Declares the document type and version of HTML being used (HTML5).

<!-- Declares the document type -->

A

<!DOCTYPE html>:

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

<!-- Contains the content of the page -->

A

<body>
</body>

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

This contains the content of the webpage that will be visible to users.

A

<body>
</body>

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

Contains metadata (e.g., title, character encoding) and is not directly visible on the page.

A

<head>
</head>

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

HTML element represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.

A

<table>
</table>

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

<a>Link text</a>

Used to create hyperlinks.

A

Linking

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

img src=”image.jpg” alt=”Description”>:
Embeds an image into the webpage.

A

Images

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

element represents a list (or sequence) of items; that is, a list in which the items are intentionally ordered, such that changing the order would change the meaning of the list.

A

Order List (ol)

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

element defines a table row

A

<tr>
</tr>

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

lement defines a table header,

A

<th>
</th>

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