NEW
Font size
WorksheetsHTML Part 1
Total questions: 25
Worksheet time: 37mins
This tag tells the computer this is a document written in HTML.
<p>
<!DOCTYPE html>
<h1>
<html>
This tag contains all the main contents of your webpage.
<body>
<head>
<contents>
<p>
This tag defines a heading at the smallest size.
<h6>
<h2>
<h7>
<h1>
This tag defines a heading at the largest size.
<h1>
<h20>
<h3>
<h2>
Which of the following is not a heading tag?
<h7>
<h1>
<h2>
<h4>
Match the correct end tag...
<p>
<p/>
<\p>
</p>
</P>
This tag can be used to break line of text (move to a new line) inside a paragraph.
<br>
<break>
<bl>
<nl>
Where do we always type all of our tags?
between the head tags
between the body tags
wherever you want
between the paragraph tags
What does a closing tag look like?
< >
<\ >
</ >
<< >>
What does a opening tag look like?
< >
</ >
<< >>
<
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
The <head> tags store metadata and other information, like the title
True
False
which is not an example of a closing tag?
</p>
<ul>
</html>
</h3>
This tag inserts a break at the point where the tag appears.
</br>
<br>
<hr>
</hr>
Indicates the start of an item that will be underlined.
<u>
</u>
<ul>
</ul>
Inserts a horizontal rule (line).
<meta/>
<hn>
<hr>
<br/>
T/F: If you want a heading to be bold, you need to use <b> and </b> as well as <h1> and </h1>.
True
False
T/F: When you use </h1> to end a heading, any text after that will automatically be moved down to the next line.
True
False
All of your html content - headings, paragraphs, images, etc. - should go between which tags in the html skeleton?
<head>...</head>
<body>...</body>
<content>...</content>
Which tags would put text in italics?
<p>....</p>
<i>...</i>
<body>...</body>
<b>...</b>
Which tags would put text in bold?
<p>....</p>
<i>...</i>
<body>...</body>
<b>...</b>
Which html tag ENDS a paragraph?
<p>
<br>
</p>
</body>
What line does the page content go on?
4
7
1-9
2-8
