meta formatting
meta name=”author/keywords” content=””
format for a link to a heading with the id “heading1”
<p><a>First Heading</a></p>
format for heading level 1 with id heading one
<h1>This is</h1>
code for img that links to vt website
<a>
<img></img>
</a>
ordered list syntax
<ol>
<li>First</li>
<li>Second</li>
</ol>
format for a table with header and body
<table>
<thead>
<th>First Name</th>
</thead>
<tbody>
<tr>
<td>John</td>
</tr>
</tbody>
</table>
copyright symbol
©
start and end of form
<form>
</form>
basic text input
<label>Name:</label>
<input></input>
bigger text area input
<label>Comments:</label>
<textarea></textarea>
the syntax for basic text input is the same for
checkbox
label here
<label>Site Design
<input></input>
</label>
<label>Links
<input></input>
</label>
selection/rating (drop down options)
label here
<select>
<option>1</option>
<option>2</option>
</select>
submit and reset
<input></input>
<input></input>
absolute positioning for an image with id=”titlebackground”
titlebackground {
position: absolute; left: 100px; top: 50px; z-index: 0 }