View Single Post
  #10 (permalink)  
Old Nov 16th, 2007, 16:58
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Hi guys, wondering on backgrounds

Looking at your code and well ... you're missing a doctype, character encoding, title

This is usually what you should always start off with

HTML: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">

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

<body>

</body>
</html>
That is the code for a basic HTML document.
Reply With Quote