I finally did it. Check out my new site & forum

We may earn a small commission from affiliate links and paid advertisements. Terms

Liquidblaze

Senior Member
Hey i finally bought my first domain and created my first website. I want to see you all think. Its kinda simple right now but you know i am still working on it and i have a forum up.

I know nothing about webdesign everything you see i taught myself within the two weeks.

Brian do you mind if i link to you?

There is a special thanks for BodyDroppedNikes at the bottom!

www.hsvteamadrenaline.com
 
Logo came out pretty well. Those team cars better have something under the hood, because I'm not feelin the bling at all.

-> Steve
 
damn i would so drive that thing lol. yeah, from what i see its all sohcs with minor mods...with the excpetion of the zc and the eclipse, but even those arent even mildly modded. Im sorry, im not trying to be an asshole, but you guys better bring up some serious hp numbers and times...cuz if youre going to try and "represent" you need to bring something besides hondas with rims, exhausts, and springs.. cuz no one is going to take you seriously... people will label you guys as a crew of idiot ricers with hondas and rims. sorry, but thats the truth. but, a crew isnt all about that, its also about comradery and all that shit.
 
25 html errors:
http://validator.w3.org/check?verbose=1&ur...adrenaline.com/

your counter over flows your email address in firefox:

[attachmentid=102]


Code:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
 if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
  document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
 else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>

nobody uses NN4 anymore. fuck them. if they don't want to upgrade, fuck them. that browser is 10 years old practically.

Code:
<body bgcolor="#000000" text="#FFFFFF">

this is depreciated as of 1999.

use css instead.

in the <head>
add:

Code:
<style type="text/css" media="screen">
body { background: #000; color: #FFF; }
</style>
<style
and make you body tag just <body>


Code:
<div id="Layer1" style="position:absolute; left:39px; top:-1px; width:917px; height:185px; z-index:8">

holy crap. lol

your very first webpage, and you're dealing with absolute positioning, z-indexes, and shit!? lol

sounds like you used some kind of code editor.

but anyway, yeah, you can clean this entire page up a LOT.


Code:
<font color="#FFFFFF"><a href="index.htm">Home</a></font>

font is depreciated as well.

if you want all your links white (which they AREN'T in firefox) add another style:

Code:
a {color: #FFF; }

and then everytime you use <a href= ... they will be white. it saves you a dicklod of typing too. but you didn't type this out, did you :p


and then you have the whole menu...

Code:
<div id="Layer2" style="position:absolute; left:-5px; top:182px; width:122px; height:423px; z-index:2">
 <table width="99%" height="407" border="1">
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="index.htm">Home</a></font></div></td>
  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="aboutus.htm">About 
     Us</a></font></div></td>

  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="chris.htm">Chris</a></font></div></td>
  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="sam.htm">Sam</a></font></div></td>
  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="simon.htm">Simon</a></font></div></td>

  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="thom.htm">Thom</a></font></div></td>
  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF">Adam</font></div></td>
  </tr>
  <tr> 
   <td height="37"><div align="center"><font color="#FFFFFF"><a href="/forum">Forum</a></font></div></td>

  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="links.htm">Links</a></font></div></td>
  </tr>
  <tr> 
   <td><div align="center"><font color="#FFFFFF"><a href="contactus.htm">Contact 
     Us</a></font></div></td>
  </tr>
 </table>
</div>

you can make this 5 lines of html.

we'll keep your crazy ass div.... but then watch this:

Code:
<div id="Layer2" style="position:absolute; left:-5px; top:182px; width:122px; height:423px; z-index:2">

<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
</div>

and then, add a style tag:

Code:
div#Layer2 a { display: block; text-align:center; color: #FFF; }

done :)
 

Attachments

  • hsv.JPG
    hsv.JPG
    49.3 KB · Views: 169
I'll give you a well done for you first web page.... much better than what i could do.

My one suggestion is the menu on the left. I can't read what anything says cuz of the blue on black background. May i sugges tsomething w/ a bit more contrast.

Good luck mang.
 
Originally posted by OldEMaltLiQuoR@Mar 21 2005, 02:23 PM
I'll give you a well done for you first web page.... much better than what i could do.

My one suggestion is the menu on the left. I can't read what anything says cuz of the blue on black background. May i sugges tsomething w/ a bit more contrast.

Good luck mang.
[post=476539]Quoted post[/post]​


told ya :D

yeah, he used a font tag to make it white. that works fine in ie, but fails miserably in every browser besides IE.

go figure.

as a developer, you will soon learn to hate IE and all its quirks.

someone did so much as to make http://www.quirksmode.org just to point all this out
 
Back
Top