NEW
Font size
WorksheetsHTML QUIZ # 3
Total questions: 20
Worksheet time: 10mins
HTML stands for.....
Hypertext Mark Up Language
Home Type Mark Language
Home Tool Mark up Language
Hyperlinks and Text Mark up Language
The root element of the HTML page
<head>
<html>
<title>
<p>
The _____element contains meta information about the HTML page
<html>
<!Doctype html>
<head>
<style>
this element is shown in the browser's title bar or in the page's tab.
<head>
<title>
<html>
<style>
The ____element defines the document's body, and is container for all the visible contents, such as headings, paragraphs, images hyperlinks, tables, lists etc.
<head>
<html>
<style>
<body>
Which of the following is used to create a hyperlink in HTML?
<a>
<link>
<href>
<url>
What does the <img> tag require to display an image?
src attribute
alt attribute
href attribute
title attribute
What attribute is used to specify the destination of a link in the <a> tag?
src
href
link
url
Which of the following elements is used to create a line break in HTML?
<br>
<break>
<line>
<lb>
Element that defines a large heading
<h1>
<h3>
<h4>
<h6>
Element that defines a paragraph.
<h1>
<p>
<head>
<html>
Which of the following are true about HTML Attributes?
All HTML elements can have attributes
Attributes provide additional information about elements
Attributes are always specified in the start tag
all of these
Tag that defines hyperlink.
<br>
<a>
<img>
<href>
The ____attributes specifies the URL of the page the link goes to.
src
href
alt
style
This tag is used to attach image in an HTML page.
<a>
<img>
src
href
The ____ attribute specifies the path to the image to be displayed
img
href
src
<a>
What is the correct HTML for creating a hyperlink?
Which character is used to indicate an end tag?
/
*
+
>
Which code is correct for a image in html?
<img src="pic_mountain.jpg"/
<img "pic_mountain.jpg">
<img src="pic_mountain.jpg">
Which is the correct Doctype?
<!DOCTYPE /html>
<!DOCTYPE <html>
<!DOCTYPE html>
<DOCTYPE html>
