What does the "p" in <p> stand for?
What is a paragraph?
Almost all of our content the user sees goes in which element?
What is body?
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">
What is 4. <img src="image.gif" alt="MyImage">?
What does HTML stand for?
What is Hyper Text Markup Language?
What is the design side (style sheets) that goes along with HTML?
What is CSS?
Which HTML tag will create the largest heading?
<h1>
What tag would you use to make a numbered list?
What is <ol>?
Fill in the blank. Only content inside the opening an closing ______ tags can be displayed to the screen
<body></body> tags
What does CSS stand for?
What is Cascading Style Sheets?
Name two HTML tags that do not need closing tags
What are <img>, <br>, <hr> (any combination of two)?
What should be the first line of your HTML files?
<!DOCTYPE html>
I use this html tag to make text bold?
What is b tag?
How many different headings are there?
6 headings
What tags do you need to put image?
What is <a> and <img>?
Creates a line break on the resulting page
What is the <br> tag?
how to change the size of the text
<font size="5">
Give an example of an HTML attribute.
What is src, alt, href, ...?
The title tag is kept inside the __________.
<head>
What two tags do you use to create a bullet point list?
What is <ul> and <li>?
<tag> </tag> What are these?
opening and closing tags
What does src stand for?
source
What is the purpose of having alternative text for an image?
What is It provides a backup in case your image doesn't download properly or for visually impaired users?
What does "li" in the <li> tag, stand for?
What is list item?
Which character is used to indicate an end tag? And what is its exact name
/
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html / .htm?