<h1></h1>
What is....a large heading
This (<a) is found at the beginning of a hyperlink line...what does it stand for?
What is..... anchor.
<style></style>
What is....add color to our webpage
HTML is an acronym for a coding language used to build webpages. HTML means...
What is.....Hypertext Markup Language
<br>
What is...a line break
One uses an id tag to insert a link that will allow the viewer to jump to that section on the page.
What is..... an internal link
body{background-color:rgb(10,10,10);}
What is....add a background color to my entire webpage
What is...between the tbody tags....<tbody></tbody>
<em></em>
What is.....add emphasis (or italics).
The type of link that allows you to take the viewer to a different website
What is....external Link
In order to add color using an id, one must use this symbol prior to entering the id name (the identifier) into the appropriate place.
What is.....a # (hashtag).
To start a new row in a table, you must have these tags.
What is...table row tags...<tr></tr>
<tr></tr>
What is.....add a table row
________ is used when you want to direct the external link to open in a new window.
What is..... target="_blank"
This identifier is used prior to the following CSS code to add color to the same word throughout the entire webpage.
______{color:rgb(10,10,10);}
What is.....
.(class) - the name you actually assign as your class id to the word you want colored
Each line of information in the table must have a set of these.
What is...table data tags...<td></td>
<body></body>
What is....the body of the webpage...this is where all viewable information should go
href
What is..... hypertext-reference
Style tags go in a certain place in the script in order for them to work correctly.
What is.... just before the closing heading (</head>) tag
These tags hold the table heading information
What is...table heading tags...<th></th>