Results 1 to 7 of 7

Thread: WOOT!!!! I finally got my site!!!!

  1. #1
    Join Date
    Jan 2007
    Location
    The stage
    Posts
    568
    Thanks
    23
    Thanked 6 Times in 6 Posts

    Default WOOT!!!! I finally got my site!!!!

    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!
    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

  2. #2
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    Ok...

    Firstly, nice Photoshop skills

    Now, onto coding:

    Code:
    <html>
    No DOCTYPE? Use (X)HTML Trans/Strict. Whichever you prefer.
    Code:
    <body bgcolor="CCCCCC">
    This can be replaced in CSS with background-color:#CCCCCC;
    Code:
    </head>
    No Content-Type meta tag. Here's one: <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
    Code:
    <form name="count" class="countdown">
    No action="..."

    And other errors when you validate your page...
    Here's one that is validated:

    HTML Code:
    <!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>
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  3. #3
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    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.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  4. #4
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    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...
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  5. #5
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    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
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  6. #6
    Join Date
    Jan 2007
    Location
    The stage
    Posts
    568
    Thanks
    23
    Thanked 6 Times in 6 Posts

    Default

    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...

  7. #7
    Join Date
    Feb 2007
    Posts
    145
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Exclamation

    That image takes ages to load

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •