NEW
Font size
WorksheetsHTML basic
Total questions: 15
Worksheet time: 8mins
What does HTML stand for ?
Hyper Text Markup Language
Home Tool Markup Language
Hyperlinks and Text Markup Language
Who is manking the Web standards ?
Microsoft
The World Wide Web Consortium
Mozilla
Choose the correct HTML element for the largest heading:
<head>
<heading>
<h6>
<h1>
Which of these elements are all <table> elements?
<table><tr><td>
<thead><body><tr>
<table><tr><tt>
<table><head><tfoot>
How can you make a numbered list?
<ol>
<ul>
<dl>
<list>
What is the correct HTML for making a checkbox?
<checkbox>
<check>
<input type="check">
<input type="checkbox">
What is the correct HTML for making a text input field?
<textinput type="text">
<input type="textfield">
<input type="text">
<textfield>
What is the correct HTML for making a text area?
<input type="textbox">
<textarea>
<input type="textarea">
What is the correct HTML for inserting an image?
<img alt="MyImage">image.gif</img>
<img src="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img href="image.gif" alt="MyImage">
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
<a href="url" target="new">
<a href="url" new
What is the correct HTML for making a checkbox?
<check>
<checkbox>
<input type="checkbox">
<input type="check">
HTML comments start with <!-- and end with -->
False
True
Which HTML element defines the title of a document?
<head>
<title>
<meta>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alt
src
longdesc
title
Which doctype is correct for HTML5?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE HTML5>
<!DOCTYPE html>
