Font size
WorksheetsHTML Day-1
Total questions: 25
Worksheet time: 15mins
What does HTML stand for?
Hyperlinks and Text Markup Language
Home Tool Markup Language
HyperText Markup Language
Hyper Transfer Markup Language
HTML tags are usually written inside which symbols?
{ }
( )
[ ]
< >
Which HTML tag is used to create a hyperlink?
<link>
<a>
<href>
<url>
Which tag is used to define the root of an HTML document?
<head>
<body>
<html>
<doctype>
Which tag contains meta information like title and character set?
<body>
<meta>
<head>
<title>
The declaration <!DOCTYPE html> tells the browser that the document is an (a) document.
Which of the following is the correct HTML element syntax?
<p> Hello World </p>
<p> Hello World <p>
p>Hello World</p>
<p>Hello World
HTML elements usually have an opening tag, content, and a (a) tag.
An HTML element is made up of __________.
Only opening tag
Only closing tag
Opening tag, content, and closing tag
Only attributes
Which attribute is used to provide additional information about an element?
Tag
Element
Content
Attribute
Attributes are always written inside the (a) tag of an HTML element.
The <em> tag is used to show (a) text.
Which tag is used to show text as important (semantic emphasis)?
<b>
<i>
<strong>
<u>
What is the main purpose of HTML entities?
To create styles
To add images
To display reserved or special characters
To link web pages
Which attribute is used to provide a unique name to an HTML element?
class
id
name
style
Which attribute is used to apply CSS styles directly to an element?
class
id
style
title
Which HTML tag is used to create an unordered list?
<ol>
<li>
<ul>
<list>
Which type of list displays items with numbers?
Unordered list
Description list
Ordered list
Bullet list
Which HTML tag is used to create a table?
<tab>
<tr>
<table>
<header>
The (a) attribute is used to merge columns in a table.
Which attribute is used to specify the URL in a link tag?
src
link
href
url
Which tag is used to insert an image in HTML?
<picture>
<imgsrc>
<img>
<image>
Which tag is used to define a table header cell?
<td>
<thead>
<th>
<header>
Which attribute is used to apply inline CSS?
class
id
style
font
Which attribute is used to group multiple elements for styling?
id
name
class
style
