HTML XHTML Cheatsheet
HTML XHTML Cheatsheet
Link a StyleSheet
<link rel="stylesheet" href="/style.css" type="text/css" />
RSS Autodiscovery
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/rss.xml"
/>
META Description
<meta name="description" content="About a Page" />
META Keywords
<meta name="keywords" content="go, here" />
Table
1/3
<table>
<tr>
<th>Header A</th>
<th>Header B</th>
</tr>
<tr>
<td>A One</td>
<td>B One</td>
</tr>
<tr>
<td>A Two</td>
<td>B Two</td>
</tr>
</table>
</frameset>
</frameset>
File Upload
<form method="post" enctype="multipart/form-data" action="/up">
</form>
<option value="2">Orange</option>
</select>
Abbreviation
<abbr title="United States">US</abbr>
Definition
2/3
<dl>
<dt>Word</dt>
<dd>Definition</dd>
</dl>
<ol>
<li>One</li>
<li>Two</li>
</ol>
Bullet List
<ul>
<li>One</li>
<li>Two</li>
</ul>
Basic HTML
3/3