RWD-Final Flashcards
What is HTML?
HTML stands for Hypertext Markup Language and is used for creating the
structure of web pages.
Who is the father of HTML?
HTML was developed by Tim Berners-Lee.
HTML stands for:
Hypertext Markup Language
What is the correct syntax of doctype in HTML5?
<!DOCTYPE html>
Which of the following is used to read and render an HTML page?
A web browser
Which tag is used for inserting the largest heading in HTML?
<h1>
</h1>
What is DOM in HTML?
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.
In which part of the HTML metadata is contained?
The <head> section of the HTML document contains metadata like title, meta
tags, and links to external resources.
Which element is used to get highlighted text in HTML5?
<mark></mark>
How do we write comments in HTML?
<!-- This is a comment -->
Which of the following elements in HTML5 defines video or movie content?
<video>
</video>
Which HTML tag is used for making the character appearance bold?
<b></b>
Which HTML tag is used to insert an image?
<img></img>
HTML is a subset of?
XML
Which Character is used on a closing tag in HTML?
/
Which of the following HTML code will make an image clickable?
<a><img></img></a>
Among the following, which is the HTML paragraph tag?
<p>
</p>
In HTML, which attribute creates a link that opens in a new window tab?
target=”_blank”
Which HTML element is used for short quotes?
<q></q>
Which of the following HTML tags is used to create an unordered list?
<ul>
</ul>
Which HTML element is used for abbreviation or acronym?
<abbr></abbr>
Which HTML tag adds a row in a table?
<tr>
</tr>