WorksheetsHTML Basics_EEBA
Total questions: 21
Worksheet time: 21mins
What tag starts and ends an unordered list?
<p> </p>
<ol> </ol>
<ul> </ul>
<h1> </h1>
What is the biggest heading tags?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tags start and end a paragraph tag?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tag starts and ends a list?
<p> </p>
<ol> </ol>
<ul> </ul>
<li> </li>
Which of the following tags are in the <head>
<p>
<body>
<footer>
<title>
You should save HTML files with which file extension?
.htm
.index
.webpage
.html
HTML stands for...
Hyper Text Markup Language
High Tech Marking Language
High Tech Modem Language
Hyper Tech Markup Lexicon
Which character is used to create an end or closing tag?
*
>
<
/
The ____ tag creates a paragraph.
<pr>
<p>
<para>
<par>
What is the command tag "HTML Images"
<img src="img.jpg">
<img url="img.jpg">
<img ="img.jpg">
<img href="img.jpg">
To save the first file, Which is correct?
File name: index.co.th
File name: index.com
File name: index.html
File name: index.notepad
Which of the following tags are the last tag on a html document
<end>
</body>
</footer>
</html>
</body>
Body tag
Paragraph tag
Closing body tag
Header tag
The information to be displayed in the document must be inside the container:
<title>...</title>
<img>
<body>...</body>
<br>
What is the correct syntax to change the background color with css?
background-color: purple;
backgroundcolor=orange
background-color = "purple";
change-background-color: purple
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<head></head>
<div></div>
<img></img>
<head>
Which is correct CSS syntax?
{body; colour = black;}
body: colour = black
body {
colour : black;}
{body colour is black}
What tag do you use to create a numbered list?
<list>
<ol>
<li>
<ul>
Select the rule to make all the text in your web page blue and centered.
p {
colour: blue; }
body {
text-align: left;
colour: blue; }
p {
text-align: center
color: blue; }
body {
text-align: center
color: blue; }
Name an element which does not have a closing tag.
<img>
<head>
<body>
<p>
Where should you put the link tag to connect your CSS and HTML file?
Between the <body> </body> in HTML
Between the <head> </head> in HTML
None of them
