RWD-Final Flashcards

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
Q

To show deleted text, which HTML element is used?

A

<del></del>

26
Q

What is the correct syntax of a web address?

A

http://www.example.com

27
Q

Which tag is used to create a dropdown in HTML Form?

A

<select></select>

28
Q

Which tag is used to create a numbered list in HTML?

A

<ol>
</ol>

29
Q

How to create a checkbox in HTML Form?

A

<input></input>

30
Q

How to insert Hyperlink in HTML Page?

A

<a>Link Text</a>

31
Q

Which extension is used for an HTML file?

A

.html

32
Q

Which tag is used to create a blank line in HTML?

A

<br></br>

33
Q

Which HTML tag converts plain text into italic format?

A

<i></i>

34
Q

What is the use of <hr/> tag in HTML?

A

The <hr> tag is used to create a thematic
break or horizontal line on a web page.

35
Q

Which attribute is not essential under <iframe>?

A

height

36
Q

Which works similarly to <b> element?</b>

A

<strong></strong>

37
Q

Which tag is used to underline text in HTML?

A

<u></u>

38
Q

Which attribute specifies a unique alphanumeric identifier to be associated with an
element?

A

id

39
Q

Which of the following is an HTML specification used to add more information to
HTML tags?

A

HTML5 Data Attributes (data-*)

40
Q

Which HTML element is used for YouTube videos?

A

<iframe>
</iframe>

41
Q

Which of the following HTML elements is used for canvas graphics?

A

<canvas>
</canvas>

42
Q

The full form of CSS is:

A

Cascading Style Sheets

43
Q

How can we change the background color of an element?

A

Use the
background-color property in CSS.

44
Q

How can we change the text color of an element?

A

Use the color property in CSS.

45
Q

In how many ways can CSS be written in?

A

CSS can be written inline, in an external
stylesheet, or in a <style> block in the HTML document.</style>

46
Q

What type of CSS is generally recommended for designing large web pages?

A

External CSS

47
Q

Which HTML tag is used to declare internal CSS? -

A

<style>

</style>
48
Q

How can we select an element with a specific ID in CSS?

A

Use #elementID in the
CSS selector.

49
Q

How can we select an element with a specific Class in CSS?

A

Use .className in the
CSS selector.

50
Q

In the below code snippet, in what order will the margins be added?

A

Top, Right, Bottom, Left

51
Q

Can negative values be allowed in the padding property?

A

Yes, negative values can
be used in the padding property.

52
Q

The CSS property used to specify the transparency of an element is?

A

opacity

53
Q

How can we specify the spacing between each letter in text in CSS?

A

Use the
letter-spacing property.

54
Q

What is the correct syntax for referring to an external CSS?

A

<link></link>

55
Q

Which of the following are valid ways to represent a color in CSS?

A

Hexadecimal
(#RRGGBB), RGB (rgb