View Full Version : WOOT!!!! I finally got my site!!!!
Rockonmetal
08-27-2007, 02:32 AM
Yeah I finally got my splice of the internet.. woot! I'M GOING TO TAKE OVER MARS!!!!!!!!! *not really cuz Mars don't got a good internet connection *and it costs like $400 per second...* I finally got a splash page *i think thats what you call it
anyways see here! (http://www.pureadd.com/)
comment on my mad imaging skills
I did it in Fireworks CS3 *awesome i downloaded trial cuz i can't afford...*
Comment yo i love hearing people say stuff... especially when its good :D
tech_support
08-27-2007, 07:12 AM
Ok...
Firstly, nice Photoshop skills :)
Now, onto coding:
<html>
No DOCTYPE? Use (X)HTML Trans/Strict. Whichever you prefer.
<body bgcolor="CCCCCC">
This can be replaced in CSS with background-color:#CCCCCC;
</head>
No Content-Type meta tag. Here's one: <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
<form name="count" class="countdown">
No action="..."
And other errors when you validate (http://validator.w3.org/check?uri=http%3A%2F%2Fwww.pureadd.com%2F&charset=%28detect+automatically%29&doctype=HTML+4.01+Strict&group=0&st=1) your page...
Here's one that is validated:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>PureAdd</title>
<style type="text/css">
body {
background-color:#CCCCCC;
}
#countdown {
background: transparent;
border: #000000 1px solid;
color:#000000;
height: 30px;
width: 240px;
text-align: center;
padding-top: 5px;
}
</style>
</head>
<body>
<script type="text/javascript" src="scripts/splash.js"></script>
<div id="countdown">Some days left...</div>
<script type="text/javascript">
/*
Count down until any date script-
By JavaScript Kit (www.javascriptkit.com)
Over 200+ free scripts here!
*/
//change the text below to reflect your own,
var before="Pureadd's release"
var current="PUREADD IS HERE!!!!!!"
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
function countdown(yr,m,d){
theyear=yr;themonth=m;theday=d
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
futurestring=montharray[m-1]+" "+d+", "+yr
dd=Date.parse(futurestring)-Date.parse(todaystring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if(dday==0&&dhour==0&&dmin==0&&dsec==1){
document.getElementById('countdown').innerHTML=current
return
}
else
document.getElementById('countdown').innerHTML=""+dday+ " days, "+dhour+":"+dmin+":"+dsec+" till "+before
setTimeout("countdown(theyear,themonth,theday)",1000)
}
//enter the count down date using the format year/month/day
countdown(2007,9,8)
</script>
</body>
</html>
No DOCTYPE? Use (X)HTML Trans/Strict. Whichever you prefer.XHTML isn't yet supported by the biggest browser on the market, and the transitional period ended a good decade ago, making Transitional DOCTYPEs seriously out of date now.
No Content-Type meta tag. Here's one: <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >It shouldn't be necessary. The server should send a Content-Type header of its own, and if it does it will override this one.
tech_support
08-27-2007, 10:55 AM
It shouldn't be necessary. The server should send a Content-Type header of its own, and if it does it will override this one.
Just in case ;) There are very weird web servers in this world...
Well a server that doesn't send a Content-Type is broken and incapable of serving documents to anything except IE anyway, so I think we're safe :)
Rockonmetal
08-27-2007, 02:15 PM
Huh???? Your making absolutly no sense... Unfortunitly its Macromedia Fireworks not Photoshop... I said that... right
yeah
I did it in Fireworks CS3 *awesome i downloaded trial cuz i can't afford...*
HEY TELL EVERYONE YOU KNOW ABOUT IT PLEASE I WANT IT TO BE BIGGER THAN YOUTUBE lol...
Ryan Fitton
09-02-2007, 09:39 PM
That image takes ages to load :(
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.