Results 1 to 9 of 9
  1. #1

    Post My first coded site.

    Hey ive been codin a site today. im new to this and self taught, started this site 27/4/07 so its not really done yet. hense the name.

    WWW.UNFINSHEDSITE.TK <-- got to wait 10 mins b4 its done. sorry dot.tk is anoyin

    Tell me what you think. its coded CSS and Div Tags
    Last edited by DigitalDeath,; 27-04-2007 at 07:57 PM.

  2. #2

    Default

    not letting me edit so i relized i didnt upload thie pics lol so hold on and ill get it done.

  3. #3
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    2,009

    Latest Awards:

    Default

    You have 2 style areas? why not put it all in one, also put the style in to a file not on the index page.

    Whats up with the images?

    EDIT: By that I don't mean there not there they are I mean it looks like you have gone and taken a screeny of them then cut them out and added them in saving with a bad quality
    Last edited by redtom; 27-04-2007 at 08:29 PM.

  4. #4

    Default

    Quote Originally Posted by redtom View Post
    You have 2 style areas? why not put it all in one, also put the style in to a file not on the index page.

    Whats up with the images?

    EDIT: By that I don't mean there not there they are I mean it looks like you have gone and taken a screeny of them then cut them out and added them in saving with a bad quality
    It was a free layout ive just tried to code it a little

  5. #5
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    2,009

    Latest Awards:

    Default

    Quote Originally Posted by DigitalDeath, View Post
    It was a free layout ive just tried to code it a little
    O right, the codings not bad just the CSS being on the index page, and how you have style areas.

    Try using theses

    http://validator.w3.org/

    http://jigsaw.w3.org/css-validator/

  6. #6

    Default

    Quote Originally Posted by redtom View Post

    O right, the codings not bad just the CSS being on the index page, and how you have style areas.

    Try using theses

    http://validator.w3.org/

    http://jigsaw.w3.org/css-validator/
    sry im noob ive never done anything like this so what question....what? lol i got no idea what ur on bout.

    EDIT: oh it tells you whats rong with it.
    Last edited by DigitalDeath,; 27-04-2007 at 08:41 PM.

  7. #7
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    2,009

    Latest Awards:

    Default

    Right I'll give you a small example.

    This is how it should be coded:

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    
    	<title>Yoursite.com</title>
    
    	<link rel="stylesheet" href="style.css" type="text/css" /> <!-- This links to your CSS File -->
    
    </head>
    
    <body>
    
    <!-- Divs here -->
    
    </body>
    </html>
    Yours is like this:

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    
    	<title>Yoursite.com</title>
    
    <style type="text/css">
    
    <--Some CSS here-->
    
    </style>
    <style>
    
    <--Some CSS here-->
    
    </style>
    </head>
    
    <body>
    
    <!-- Divs here -->
    
    </body>
    </html>
    Also when you code your CSS only have the style tags once around it all.

  8. #8

    Default

    kk ill change it now. thx 4 help dude +Rep
    Last edited by DigitalDeath,; 27-04-2007 at 09:16 PM.

  9. #9
    Join Date
    Dec 2006
    Location
    None of your business!
    Posts
    2,492
    Tokens
    50

    Latest Awards:

    Default

    Hmm it looks OK and the coding looks fine to me really. Overall you might want to give the design a bit more thought and work but well done for one of your first attempts. + rep.

Posting Permissions

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