What tag do we use to add text?
<p>
Almost all of our content the user sees goes in which element?
<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">?
Which HTML tag will create the largest heading?
<h1>
Why do we use bootstrap?
This means that elements can contain other elements.
nested or nesting
I use this html tag to make text bold?
<b>
What should be the first line of your HTML files?
<!DOCTYPE html>
How many different headings are there?
6 headings
What does HTML do?
HTML defines the meaning and structure of web content.
Give an example of an HTML attribute.
src, alt, href, class, id, etc.
The <title> tag goes inside the __________.
<head>
What does src stand for?
What is the purpose of having alternative text for an image?
It provides a backup in case your image doesn't download properly or for visually impaired users.
What kind of code goes inside the style tag or attribute?
CSS