NEW
Font size
WorksheetsHTML Elements
Total questions: 22
Worksheet time: 44mins
HTML Tag is a _______________ tag based programming language
Hyper Time Marking Language
Head Title Meta Language
Hyper Text Markup Language
H1 Text Moving Language
The _________ element can include a title for the document, scripts, styles, meta information, and more
HTML
Head
Title
Body
The ___________ tag is required in all HTML documents and defines the title of the document.
HTML
Head
Title
Body
The ___________ element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
HTML
Head
Title
Body
___________ defines the most important heading.
HTML
Head
H1
H6
___________ defines the least important heading.
HTML
Head
H1
H6
The ________ tag defines a paragraph
<span>
<div>
<para>
<p>
The ________ tag is a phrase tag used to define importance.
<span>
<strong>
<para>
<img>
The ________ tag has the ability to render a still picture on a web page.
<movie>
<audio>
<video>
<img>
The ________ tag specifies videos, such as movies or series on websites like Netflix or Youtube.
<movie>
<audio>
<video>
<img>
The ________ tag specifies a list where order is not important
<br>
<div>
<ul>
<li>
<ol>
The ________ tag specifies a list where order is important
<br>
<div>
<ul>
<li>
<ol>
The ________ tag specifies a list where a blank line is to be inserted.
<br>
<div>
<ul>
<li>
<ol>
The ________ tag defines a division or section of an HTML document.
<br>
<div>
<ul>
<li>
<ol>
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
Which list tag would you use for an ordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
Which of the following is the code for a paragraph to be blue?
<td style=“background-color:blue;”>
<h1 style=“font-size:60px;”>
<p style=“color:blue;”>
<tagname style=“property:value;”>
What is the font size in this code: <p style=“color:blue; background-color:yellow;
font-size:60px”>Hello</p>
20pixles
40pixels
50pixels
60pixels
Which set contains all of the DEFAULT tags needed to create a webpage?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
