(Basic Setup in Brackets)
Command + S
(DOUBLE JEOPARDY)
This tag is used to make paragraphs.
<p>
This tag represents a list where order does not matter.
<ul>
(DOUBLE JEOPARDY)
The basic image tag.
<img>
This was the first MCU movie to have Spider-Man as a character.
Captain America: Civil War
(DOUBLE JEOPARDY)
This is where all of your HTML files should be saved.
Your Web Design Folder.
This tag is used to make text bold.
<strong>
The names of the three kinds of lists we can make in HTML.
Ordered, Unordered, and Definition
(ON THE BOARD)
One of the two attributes you can add to change the size of your image.
width="" or height=""
(DOUBLE JEOPARDY)
This is the symbol for Gold on the Periodic Table.
(ON THE BOARD)
This is the very first tag you should type when starting a new website in Brackets.
<!DOCTYPE html>
This tag would be used to ensure that the molecule H20 was written correctly in your website.
These are the 3 tags that make up a Definition List.
<dl>, <dt>, and <dd>
Image description for the use of accessibility. Also used in case the image breaks.
(FREE FOR ALL)
This was the first President of the United States to appear on television.
Franklin D. Roosevelt
This is the second to last tag you should write for any HTML document.
</body> or Body Closing Tag.
Name one set of semantic tags. (Two tags that do the same thing but have different names)
<s> and <del>
<u> and <ins>
<em> and <cite>
(ON THE BOARD)
An example of the opening tag for an ordered list that uses Roman Numerals.
<ol type="I">
(ON THE BOARD)
Find the 3 errors in the following image:
<img scr="images/image.jpg" alt=a dog width="300"></img>
1. scr is supposed to be src
2. No quotation marks around "a dog"
3. Images do not use closing tags.
In Minecraft, you need to combine this with Blaze Powder to craft an Eye of Ender.
Ender Pearl
(FREE FOR ALL)
The complete, basic setup of an HTML document from beginning to end.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
Create a paragraph that uses 3 different kind of tags to modify the text.
<p>Hello! My name is <strong>Mr. Sandoval</strong>. I am a <em>Web Design</em> teacher. Today is August 21<sup>st</sup>.</p>
A complete example of a nested list.
<ul>
<li>List Item #1</li>
<ol>
<li>Sub List Item #1</li>
</ol>
<li>List Item #2</li>
</ul>
(FREE FOR ALL)
An example of an image in HTML with 4 complete attributes.
<img src="images/image.jpg" alt="a cute bird" width="300" height="200">
This is the year the first "computer bug" was ever found.
1947 in Harvard. A literal but got into their computer system.