HTML Flashcards

(11 cards)

1
Q

is the programming language used to write web documents. This language is not difficult to learn and you do not have to be a programmer to understand and use it.

A

HTML

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

HTML stands for

A

HyperText Markup Language

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

is the major language of the Internet’s World Wide Web

A

HTML code

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

is a language for describing web pages

A

HTML

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

HTML is not a programming language, it is a

A

markup language

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

A markup language is a set of

A

markup tags

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

uses markup tags to describe web pages

A

HTML

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

An HTML element is defined by

A

start tag, some content, and an end tag

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

HTML elements can be nested (TRUE or FALSE)

A

TRUE

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

All HTML documents consist of nested HTML elements. (TRUE Or FALSE)

A

TRUE

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

HTML Page Structure

A

<html>
<head>
<title>My WebPage</title>
</head>
<body>
<h1>Welcome to My Web Page!</h1>
<p>This is a paragraph.</p>
</body>
</html>

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