What does html stand for? - ANSWERHyper Text Markup Language
Provide an example of an an HTML 5 tag and the purpose of the tag -
ANSWER<footer></footer> , it simplified <div id= "footer"> which most coders were
using anyways, and it provided a specific close tag
Show a start tag and end tag in html (use paragraph for an example) - ANSWER<p>
and </p>
<span class="green"> Text Here </span> is a rule for: - ANSWERText
h1, a, or nav (header, footer) represents a rule for (an): - ANSWERAlready pre
defined tag on the web (web knows them)
<span class="green">Text Here</span> is a rule which can be applied how many
times? - ANSWERUnlimited
What is the purpose of an HTML comment? - ANSWERFor the coder to be able to
write notes to themselves of other coders explaining their code. The browser does
not show these comments to the viewer of the site.
Before CSS how were HTML tags formatted? Where was the formatting applied? -
ANSWERHTML tags were formatted using attributes which were placed in the open
tag
EX: <p color="red">text</p>
In what section do you "build" your divs (apply html)? - ANSWER<body> </body>
What do you include in the html tag to let the browser know that you are writing in
version 5 of HTML? - ANSWER<!DOCTYPE html>
What is the tag for an image? - ANSWER<img>
What is the tag for a link? - ANSWER<a> </a>
What three tags are required in every .html document? - ANSWER<html>, <head>,
and <body>.
<div id="text"> Links </div> is a rule which can be applied how many times? -
ANSWEROnce
<div id="text">Hello World</div> is a rule for (a)... - ANSWERdiv/box
When you want to move a div what rule do you apply? - ANSWERmargin (space on
the outside of the div)