Quizes & Games

HTML Quiz

The test contains 20 questions and it's not official, it's just a nice way to see how much you know, or don't know, about HTML.

1.

Why are hidden form fields useful?

because their values are unique
because they stay out of the way
because they can hold onto data for use later on
because what you don't know can't hurt you

2.

What is the correct format for inserting an image?

<image src="photo.jpg">
<img src="photo.jpg">
<img>photo.jpg</img>
<img href="photo.jpg">

3.

What is cell padding?

Both a and b above
Used to provide width to a cell
Used to set space between cells
Used to separate cell walls from their contents.

4.

What is the correct HTML for making a checkbox?

<input type="checkbox">
<check>
<input type="check">
<checkbox>

5.

To add rows to your tables use which tags?

<cr> </cr>
<tr> </tr>
<row> </row>
<td> </td>

6.

How do you add a comment into HTML?

<Comment/>
<!--Comment-->
<--Comment-->
<-Comment->

7.

What is the correct HTML for making a drop-down list?

<input type="list">
<input type="dropdown">
<select>
<list>

8.

Which of these tags are all <table> tags?

<table><head><tfoot>
<table><tr><tt>
<thead><body><tr>
<table><tr><td>

9.

What does HTML  stand for?

Holy Text Many Languages
Home Tool Markup Language
Hyperlinks and Text Markup Language
Hyper Text Markup Language

10.

Title, meta and link elements are all located inside what element?

The Head Element
The Form Element
The Div Element
The Body Element

11.

HTML has a set of rules under which it operates. What is it called?

Tags
Laws
Dialog
Syntax

12.

What is the preferred way for adding a background color in HTML?

<background>yellow</background>
<body background="yellow">
<body style="background-color:yellow;">
<bodybackgorund="yellow";>

13.

Which section is used for text and tags that are shown directly on your web page ?

Metatags
Head
Title
Body

14.

<h1> and <h3> are examples of what?

inline elements
paragraphs
headings
addresses

15.

What is the correct tag for the smallest heading?

<h1>
<h7>
<small>
<h6>

16.

What is the correct format for creating an HTML text link?

<a "http://www.j100coders.org/">J100Coders</a>
<a href="http://www.j100coders.org/">J100Coders</a>
<a href="http://www.j100coders.org/" />
<a>http://www.j100coders.org/</a>

17.

Which of the following examples shows correctly nested HTML elements?

<html><head></head><body></body></html>
<html></html><head></head><body></body>
<html><head><head><body><body><html>
<html><head><body></html></head></body>

18.

What does it mean when tags or attributes are said to be deprecated?

They only work in special browsers
They are used in only HTML.
They are used for text formatting only
They have become outdated and may become obsolete in the future

19.

What will be the output of this code?

<!-- display some text--> 

<h1>Here is a heading</h1>

Here is a heading
display some text Here is a heading
display some text
Here is a heading

20.

What is the proper syntax of a form submit button?

<input type="submit" />
<input type="button" />
<input="submit" />
<input type="go" />