Shortcut / favorite icon

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">

Refresh every 10 minutes

<meta http-equiv="refresh" content="600">
Try the reloader!

Jump with JavaScript

<script language="JavaScript">
	location="page2.htm"
</script>

Try it (link to page1a.htm, which will jump to page2.htm using JavaScript)

Jump without JavaScript

<meta http-equiv="refresh" content="0;URL=page2.htm">

Try it (link to page1b.htm, which will jump to page2.htm using a meta tag)

Character set

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

No caching

<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">

Inline CSS

<style type="text/css">
	h2 { font-family:Arial,Helvetica; font-size:14pt; font-weight:Bold }
	h3 { font-family:Arial,Helvetica; font-size:12pt; font-weight:Bold }
	a { text-decoration:none }
</style>

External CSS

<link rel="stylesheet" href="/css/mystyle.css" type="text/css">