RWD-Final Flashcards

(55 cards)

1
Q

What is HTML?

A

HTML stands for Hypertext Markup Language and is used for creating the
structure of web pages.

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

Who is the father of HTML?

A

HTML was developed by Tim Berners-Lee.

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

HTML stands for:

A

Hypertext Markup Language

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

What is the correct syntax of doctype in HTML5?

A

<!DOCTYPE html>

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

Which of the following is used to read and render an HTML page?

A

A web browser

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

Which tag is used for inserting the largest heading in HTML?

A

<h1>
</h1>

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

What is DOM in HTML?

A

DOM stands for Document Object Model. It is a programming interface for web
documents and represents the page so that programs can change the document
structure, style, and content.

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

In which part of the HTML metadata is contained?

A

The <head> section of the HTML document contains metadata like title, meta
tags, and links to external resources.

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

Which element is used to get highlighted text in HTML5?

A

<mark></mark>

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

How do we write comments in HTML?

A

<!-- This is a comment -->

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

Which of the following elements in HTML5 defines video or movie content?

A

<video>
</video>

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

Which HTML tag is used for making the character appearance bold?

A

<b></b>

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

Which HTML tag is used to insert an image?

A

<img></img>

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

HTML is a subset of?

A

XML

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

Which Character is used on a closing tag in HTML?

A

/

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

Which of the following HTML code will make an image clickable?

A

<a><img></img></a>

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

Among the following, which is the HTML paragraph tag?

A

<p>
</p>

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

In HTML, which attribute creates a link that opens in a new window tab?

A

target=”_blank”

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

Which HTML element is used for short quotes?

A

<q></q>

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

Which of the following HTML tags is used to create an unordered list?

A

<ul>
</ul>

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

Which HTML element is used for abbreviation or acronym?

A

<abbr></abbr>

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

Which HTML tag adds a row in a table?

A

<tr>
</tr>

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

What is the work of <address> element in HTML5?

A

The <address> element is used
to define contact information for the author/owner of a document.

24
Q

Which tag is used to create a text area in HTML Form?

A

<textarea>
</textarea>

25
To show deleted text, which HTML element is used?
26
What is the correct syntax of a web address?
http://www.example.com
27
Which tag is used to create a dropdown in HTML Form?
30
How to insert Hyperlink in HTML Page?
31
Which extension is used for an HTML file?
.html
32
Which tag is used to create a blank line in HTML?

33
Which HTML tag converts plain text into italic format?
34
What is the use of
tag in HTML?
The
tag is used to create a thematic break or horizontal line on a web page.
35
Which attribute is not essential under