NEW
Font size
WorksheetsDay 1 Quiz
Total questions: 15
Worksheet time: 8mins
Web development mainly consists of which two major areas?
Database & Cloud
Frontend & Backend
HTML & CSS
Design & Hosting
HTML is primarily used for:
Structuring web content
Server-side logic
Adding interactivity
Styling a page
HTML stands for:
HyperText Managing Language
Hybrid Text Mark Language
Hyper Transfer Markup Language
HyperText Markup Language
The basic building blocks of a webpage in HTML are called:
Tags only
Functions
Elements
Scripts
The largest heading tag in HTML is:
<H1>
<h5>
<h6>
<h1>
Attributes in HTML are written as:
name-value
value-name
name="value"
value="name"
Which attribute specifies the image source in <img> tag?
src
alt
link
path
Which list type uses bullets in HTML?
Alphabetical list
Unordered list
Numbered list
Ordered list
Which tag is commonly used to divide content into sections?
<split>
<section>
<block>
<div>
Which of the following tags is used to add a line-break in HTML?A
</br>
<break>
<br>
</break>
Which of the following is the correct way of creating an hyperlink in HTML?
<a>www.geeksforgeeks.org <Geeksforgeeks /a>
<a href=“www.geeksforgeeks.org” Geeksforgeeks /a>
<a href= “www.geeksforgeeks.org”>Geeksforgeeks</a>
<a link=“www.geeksforgeeks.org” Geeksforgeeks> </a>
Which is true about HTML attributes?
Written inside closing tags
Written in pairs like <attribute></attribute>
Written inside opening tags
Can exist without values
Which of the following is true about HTML?
A markup language
A programming language
A language designed for styling pages
A language designed to implement logic in a page.
Which tag is used to add an header in HTML table?
<header>
<theader>
<th>
<h1>
Which of the following statements about the <p> tag is correct?
A <p> tag requires a closing </para>
A <p> tag automatically inserts a <br> after every sentence
Multiple spaces are preserved as written
Multiple spaces are reduced to a single space
