WorksheetsHTML & CSS quiz
Total questions: 21
Worksheet time: 14mins
Tag such as <head>, <h1>, <p> are (a) tags. (hint: types of tag)
Tag such as <br>, <img> are (a) tags. (hint: types of tag)
In a table, which tag is used for inserting table headings?
<table>
<td>
<th>
<caption>
What is the proper code to insert an image named "tevitol.jpg"?
<img src="tevitol" width="104" height="142">
<img="tevitol.jpg" width="104" height="142">
<img src="tevitol.jpg" width="104" height="142">
<img ="tevitol" width="104" height"142">
Which tag defines the visible content of a web document?
<head>
<meta>
<title>
<body>
A properly coded HTML tag will always be found between which two symbols?
< >
{ }
[ ]
( )
Which line of code correctly creates a link to Microsoft's website?
<a ref=https://www.microsoft.com>Microsoft
<href=https://www.microsoft.com>Microsoft<a>
<a href="https://www.microsoft.com">Microsoft
<a href="https://www.microsoft.com">Microsoft</a>
Which tag is used to create a new row within a table?
<table>
<td>
<tr>
<th>
You should save HTML files with which file extension(s)?
.hm
.index
.webpage
.html
The correct sequence of HTML tags for starting a webpage is -
Head, Title, HTML, body
HTML, Body, Title, Head
HTML, Head, Title, Body
none of these
From the below options, how do we create a bulleted list in HTML?
<li>
<ul>
<list>
<bl>
In HTML5, which of the following tag is used to initialize the document type?
<Doctype HTML>
<\Doctype html>
<Doctype>
<!DOCTYPE html>
Which character is used to represent the closing of a tag in HTML?
\
!
/
.
Which of the following tags is used to create a list item in HTML?
<list>
<a href>
<li>
<il>
How to add a comment in Html?
<!-- --!>
<!-- -->
\\
<-- -->
What is the value in this CSS?
p {color: red;}
p
color
red
Write the basic structure of an HTML document
