HTML SNIPPETS

Paste this snippet into a "index.html" file in any directory that you want the content of "covered".

<html>
<body>

<!-- Place this file in a directory that you don't want people to access. -->

</body>
</html>

Example

Use this snippet to automatically "forward" a user from the current page to a different page:

<!-- Rename this file to index.html and drop it into the directory that you want to redirect people out of -->

<html>
<body>

<!-- TIP: Make this body tag be the same as the body tag on the site that you are redirecting to, in order to make the transition as seemless as possible. -->

<meta http-equiv="REFRESH" content="0; URL=http://www.YOUR-URL.com"><br />

<a href="http://www.YOUR-URL.com">This is where you are about to go.</a>

</body>
</html>

Example

Valid HTML 4.01!

Valid CSS!