NEW
Font size
WorksheetsIntro to HTML & CSS
Total questions: 35
Worksheet time: 31mins
Which of the following codes starts a set of HTML code?
<html>
<doctype html>
<!DOCTYPE HTML>
<doctype><html>
Which of the following symbols indicates an ending tag in HTML?
;
/
<>
!
How do you set up the body for your html web page?
<b>
<bo>
<body>
<doc>
Which of the following BEST explains the difference between a <p> tag and a <br> tag?
The <br> tag produces a blank line, while the <p> tag does not
The <p> tag produces a blank line, while the <br> tag does not
Which of the following lists includes EVERY type of code needed to make an unordered list?
<ab> ... <li> .... </li> ... </ab>
<unL> ... <li> .... </li> ... </unL>
<ol> ... <li> .... </li> ... </ol>
<ul> ... <li> .... </li> ... </ul>
When should you use the <ol> code to make a list?
Steps for a recipe
Top 10 items
List of names
None of the above
When should you use the <ul> code to make a list?
Top 5 Chef Favorites
Ingredients list
Steps to complete a recipe
None of the above
How do you make an image code?
<img src="..." alt="...">
<image source="..."> <alt>
</image> </alt>
<image src="..." alt="...">
None of the above
What is the difference between HTML and CSS?
HTML provides the content, CSS provides the pictures
HTML provides the structure & content, CSS provides the color / look of the web page
HTML and CSS are the same thing
None of the above
How can you select all of the h3 tags on the webpage at one time to change the font color to blue?
#allh1s { color: blue; }
#h1 {blu}
h1 {color: blue;}
<h1 font-color="blue">
the main heading in a web document?
<p> </p>
paragraph tags
heading tags
hyperlink
picture tag
The LAST tag on a HTML document
</body>
<html>
</html>
None on the above
<body>
Opening body tag
Paragraph tag
Closing body tag
Header tag
What goes in the <head> section
Links
Title
Hair
Body
<title>The 90s</title>
<h1>The 90s</h1>
<head>The 90s</head>
<li>The 90s</li>
<h1>The 90s</h1>
<p>The 90s</p>
<body>The 90s</body>
<html>The 90s</html>
___________ defines the least important heading.
HTML
Head
H1
H6
1. <html>
2. <head> <title>Hello World!<title>
3. </head>
4. </html>
