Introduction to HTML Flashcards

1
Q

What is HTMl?

A

also known as, Hyper Text Markup Language. It describes the content and format of web pages using tags. It is a set of rules (language) for describing the
format and structure (markup) of text on computers
that allow you to go to other places of information
or websites (hypertext).

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

Who is TIM BERNERS LEE?

A

He developed the HTML

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

An HTML element is composed
of Opening Tag, content and __________________.

A

Closing tag

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

A tag name is surrounded by ______________.

A

Angle Bracket

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

An HTML Structure is composed of Doctype, HTML, Head and ________.

A

Body

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

<!DOCTYPE html> is a declaration that defines that the document is an HTML, which is encoded at the _____________ of the document.

A

First Line

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

It represents semantics or meaning.

A

HTML

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

It is the standard programming language for describing the contents and appearance of Web pages.

A

HTML5

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

It is a declaration that defines that the document is an HTML. All HTML documents must have this at the very first line of the document.

A

<!DOCTYPE html>

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

__________ element is the root element of an HTML page.

A

<html>
</html>

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

__________ element contains the meta information about the HTML page.

A

<head>
</head>

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

________ element defines the document’s body, and the container for the visible contents of the HTML document.

A

<body>
</body>

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