NEW
Font size
WorksheetsHTML Intro
Total questions: 12
Worksheet time: 6mins
HTML stands for
Hypo Text Markup Language
Hyper Text Markup Language
Hyper Text Makeup Language
Hyper Market Markup Language
HTML is the standard markup language for creating Web pages. It describes the structure of a Web page.
True
False
HTML elements tell the browser how to display the content. For example, this is a heading, this is a paragraph, this is a link, etc.
True
False
This tag defines that this document is an HTML5 document.
<html>
<head>
<!DOCTYPE html>
<title>
This tag is the root/start of an HTML page.
<!DOCTYPE html>
<title>
<body>
<html>
This element contains the title and meta information/metadata about the HTML page.
<!DOCTYPE html>
<head>
<html>
<title>
This tag specifies a title for the HTML page. Always displayed in the browser's title bar or in the page's tab.
<html>
<body>
<head>
<title>
This tag defines the document's body, a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
<!DOCTYPE html>
<html>
<head>
<body>
This tag defines the largest heading.
<h3>
<h2>
<h1>
<h4>
This tag defines a paragraph.
<p>
<pa>
<h2>
<par>
An HTML element is defined by a start tag, some content, and an end tag. Which character is used to indicate an end tag?
*
/
<
^
HTML elements are represented by tags, which are text enclosed within angle brackets <></>.
True
False
