HTML Flashcards

1
Q

HTML stands for what?

A

HyperText Markup Language.

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

HTML is used to create?

A

web pages and web applications.

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

True or False

  • HTML is widely used language on the web.
A

True

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

True or False

-We can create a static website by HTML only.

A

True

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

This is the text within text, a text has a link within it.

A

Hyper Text

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

A computer language that is used to apply layout and formatting conventions to a text document.

A

Markup Language

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

A document which is commonly written in HTML and translated by a web browser.

A

Web page

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

identified by entering an URL.

A

Web Page

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

can be of the static or dynamic type.

A

Web Page

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

What do you call of this <!DOCTYPE>?

A

Document type

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

It defines the document type or it instruct the browser about the version of HTML.

A

<!DOCTYPE>

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

This tag informs the browser that it is an HTML document. Text between html tag describes the web document. It is a container for all other elements of HTML except <!DOCTYPE>

A

<html>
</html>

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

It should be the first element inside the <html> element, which contains the metadata(information about the document). It must be closed before the body tag opens.

A

<head>
</head>

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

As its name suggested, it is used to add title of that HTML page which appears at the top of the browser window. It must be placed inside the head tag and should close immediately.

A

<title>
</title>

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

Text between body tag describes the body content of the page that is visible to the end user. This tag contains the main content of the HTML document.

A

<body>
</body>

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

Text between _______ tag describes the first level heading of the webpage

A

<h1>
</h1>

17
Q

Text between ____ tag describes the paragraph of the webpage.

A

<p>
</p>

18
Q

known as the father of HTML.

A

Tim Berners-Lee

19
Q

The first available description of HTML was a document called “HTML Tags” proposed by ____ in late _____-.

A

Tim & 1991

20
Q

the barebones version of HTML language, and it was released in1991.

A

HTML 1.0`

21
Q

This was the next version which was released in 1995, and it was standard language version for website design.

A

HTML 2.0

22
Q

This version was capable of creating tables and providing support for extra options for form elements. It can also support a web page with complex mathematical equations. It became an official standard for any browser till January 1997. Today it is practically supported by most of the browsers.

A

HTML 3.2

23
Q

released on December 1999, and it is a very stable version of HTML language. This version is the current official standard, and it provides added support for stylesheets (CSS) and scripting ability for various multimedia elements.

A

HTML 4.01

24
Q

the newest version of HyperText Markup language. The first draft of this version was announced in January 2008.

A

HTML5

25
Q

What are the features of HTMl?

A
  • easy and simple language.
  • easy to make an effective presentation
  • It is a markup language
  • It facilitates programmers to add a link on the web pages
  • It is platform-independent
  • It facilitates the programmer to add Graphics, Videos, and Sound to the web pages