NEW
Font size
WorksheetsHTML Basics
Total questions: 10
Worksheet time: 5mins
What does HTML stand for?
HyperText Making Language
HyperText Multiple Language
HyperText Markup Language
HyperTransfer Markup Language
HTML language uses...
Tabs
Tags
Punctuation
Quotations
Which tag declares that the document is a HTML document
<body>
<head>
<title>
<html>
Which tag contains information about your HTML file
<head>
<title>
<p>
<h1>
Which tag creates the most important heading?
<h4>
<h2>
<h1>
<h3>
Which is the correct way to insert an image
<img="image.jpg"/>
<img src="image.jpg"/>
<image.jpg>
<img src:image.jpg>
Which tag is used in ordered lists and unordered lists to define a list item
<b>
<i>
<p>
<li>
This element is used to separate content or define a change in an HTML page
<br>
<hr>
<ol>
<body>
Which code below is correct for a hyperlink
<a herf="https://google.com">Click Me</a>
<a>Click Me>"https://google.com"</a>
<a href="https://google.com">Click Me</a>
<a>"https://google.com"Click Me</a>
Which list tag would you use for an unordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
