What does the "p" in <p> stand for?
paragraph
What does the "li" in <li> stand for?
list item
What does HTML stand for?
Hyper Text Markup Language
What does WWW stand for?
World Wide Web
How does a tree get on the computer?
It logs on!
Which HTML tag will create the largest heading?
1. <h1>
2. <head>
3. <h6>
4. <heading>
1. <h1>
What is the correct HTML for creating a hyperlink?
1. <a>https://www.l-spioneers.org/</a>
2. <a name="https://www.l-spioneers.org/">L-S Pioneers</a>
3. <a href="https://www.l-spioneers.org/">L-S Pioneers</a>
4. <a url="https://www.l-spioneers.org/">L-S Pioneers</a>
3. <a href="https://www.l-spioneers.org/">L-S Pioneers</a>
What is the difference between <ul> and <ol>
<ul> are unordered lists with bullets. <ol> are ordered lists with numbers
How many different headings are there?
6 headings
What do you get when you cross a computer and a life guard?
a screensaver!
What should be the first line of your HTML files?
1. <!doctype html>
2. <body>
3. <html>
4. <head>
1. <!DOCTYPE html>
What is missing from this list?
<li>First item!</li>
<li>Second item!</li>
<li>Last item!</li>
<ol> or <ul> tags
What is a block level container (or ‘division’ of the web page) for content
Div
Almost all of our content the user sees goes in which element?
body
Why did the cat sit on the computer?
To keep an eye on the mouse!
What element would you use to make a numbered list?
1. <list>
2. <ol>
3. <li>
4. <ul>
2. <ol>
What is the correct HTML for inserting an image?
1. <img href="image.gif" alt="MyImage">
2. <image src="image.gif" alt="MyImage">
3. <img alt="MyImage">image.gif</img>
4. <img src="image.gif" alt="MyImage">
4. <img src="image.gif" alt="MyImage">
The title tag is kept inside the ______ tag.
head tag
Why is a navigation bar important?
So the user can easily access all of the information and explore the website.
Why was the computer late to work?
He had a hard drive!
What is the <title> tag used for?
The title of your HTML file.
How many rows are in this table?
<table>
<tr>
<td>Banana</td>
<td>$56.75</td>
</tr>
<tr>
<td>Yogurt</td>
<td>$12.99</td>
</tr>
</table>
<!-- What is this syntax for -->
Comments
This is the file extension of a web page created in HTML programming.
.html/htm
What did the computer do at lunchtime?
He had a byte!