NEW
Font size
WorksheetsWeb development
Total questions: 20
Worksheet time: 10mins
HTML is what type of language ?
Scripting Language
Markup Language
Network Protocol
Programming Language
What is the full form of HTML?
Hyper Text Markup Language
Hyper Tech Markup Language
Hyper Teach Markup Language
The year in which HTML was first proposed
1980
1991
1975
1990
What should be the first tag in any HTML document?
<head>
<title>
<html>
<body>
HTML web pages can be read and rendered by
Compiler
Interpreter
Server
Web Browser
What tag is used to display a picture in a HTML page?
img
src
pic
HTML tags are surrounded by which type of brackets.
{}
[]
<>
()
What is the correct HTML element for inserting a line break?
<break>
<br>
<hr>
<lb>
Choose the correct HTML element to define important text
<important>
<strong>
<b>
<i>
Choose the correct HTML element to define emphasized text
<em>
<i>
<b>
What is the correct HTML for creating a hyperlink?
<a name="https://www.google.co.in/">Google</a>
<a href="https://www.google.co.in/">Google</a>
<a>https://www.google.co.in/</a>
Which character is used to indicate an end tag?
^
/
*
<
What is the correct HTML for making a checkbox?
<input type="check">
<checkbox>
<input type="checkbox">
What is the correct HTML for making a text input field?
<textfield>
<input type="textfield">
<input type="text">
<textinput type="text">
What is the correct HTML for inserting an image?
<image src="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
<img href="image.gif" alt="MyImage">
HTML comments start with <!-- and end with -->
True
False
Which HTML element defines the title of a document?
<meta>
<head>
<title>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
title
alt
src
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<body bg="yellow">
<background>yellow</background>
Which HTML tag produces the biggest heading?
<h1>
<h5>
<h3>
<h11>
