HTML_Summary_Worksheet gr7
HTML_Summary_Worksheet gr7
1. What is HTML?
HTML stands for HyperText Markup Language.
It is used to create and design web pages by using special tags.
5.
Practice Questions
A. Fill in the blanks:
1. HTML stands for __________.
2. To save your HTML file, use the extension __________.
3. The tag to make text bold is __________.
4. The tag that makes a line break is __________.
5. Comments in HTML start with __________.
<_____>
<____>
<title>My First Page</title>
</_____>
<body text="black" bgcolor="lightyellow" topmargin="20" leftmargin="30">
<__>Hello World</__>
<__>This is a paragraph.</__>
<__>Bold</__><br>
<__>Italic</__><br>
<__>Underline</__>
<__>
<!-- ____________ -->
</body>
</_____>
<html>
<head>
<title>My First Page<title>
</head>
<body text=black bgcolor=lightyellow topmargin="20" leftmargin="30">
<h1>Hello World</h1>
<p>This is a paragraph.
<b>Bold<b><br>
<i>Italic</i><br>
<u>Underline</u>
<hr>
<-- This is a comment -->
</body>
</html>
Part C: Label the tags
Look at the HTML snippet below. Write what each tag does on the blank lines.
<h1>Hello</h1> → ________________________
<b>Text</b> → ________________________
<i>Italic</i> → ________________________
<hr> → ________________________