OZONE Asylum
Forums
Site reviews!
site review
This page's ID:
10289
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
You shouldn't count on disabling 'font size changing'. In the Mozilla browsers the user can change the font size no matter what you say about it. You should instead redo the page so that it looks good with all font sizes (within reason of course, a font size of 72px is hard to design for :p). ' The only thing I don't like about the design is the logo. As Suho pointed out it is hard, almost impossible, to read. There are a couple of important things missing is your code. You do not have any beginning <html>-tag. That tag should be at the very beginning of the document, the only things that should come before that one is the Doctype declaration. The [url=http://faq.ozoneasylum.com/460]Doctype[/url] declaration is also missing from your page. The <title>-tags should be inside a couple of <head>-tags. In the <head>-tags you should also add a couple of <meta>-tags so the search engines will have some idea what your page is about. Most of your style declarations should also be moved to a separate stylesheet. This will both make the code easier to read and the page will load somewhat faster. The start of the html document should look something like this: [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>this is my page</title> <meta type="keywords" content="keyword 1, keyword 2..."> <link rel="stylesheet" href="url/to/stylesheet.css"> </head> <body> ... [/code] _________________________ "There are 10 kinds of people; those who know binary, those who don't and those who start counting at zero" [This message has been edited by Veneficuz (edited 02-13-2003).]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »