Thread: website help

  1. #1
    Dreadlord
    10+ Year Old Account
    Join Date
    Sep 2010
    Location
    Scotland, U.K
    Posts
    867

    Question website help

    hi there im tryin to make a website using html-kit for my guild and im currently learning how to use it at college but my college teacher wont show me how to make it untill the rest of the class is on the same stadge.

    so could anyone who uses( or knows how too use) HTML-Kit please explain how i can make this image into a homepage for my guilds website, then how to add other pages etc etc...

    ]

    the Red Squares reposent links to the other pages

    or dreamweaver if im still able to edit the file coding in html-kit ( to show my teacher the work )
    Last edited by Wipeout; 2010-09-25 at 12:55 AM.

  2. #2
    I haven't done any web design in a while and I know a lot of people don't like tables, but the easiest way I know of would be:

    <table width="300" border="1" cellpadding="0" cellspacing="0">
    <tr>
    <td colspan="2"><a href="URL"><img src="..."></a></td>
    </tr>
    <tr>
    <td><a href="URL"><img src="..."></a></td>
    <td><a href="URL"><img src="..."></a></td>
    </tr>
    </table>
    You face not Malchezaar alone, but the legions he commands.

  3. #3
    Dreadlord
    10+ Year Old Account
    Join Date
    Sep 2010
    Location
    Scotland, U.K
    Posts
    867
    that didnt work . i get the image to appear but when i try and create the links it appears under the image, also when i select preview in my web browser the image doesnt appear and shows a small ripped page....


    <td colspan="2"><a href="URL"><img src="..."></a></td> <<< what image should go in here

    <td><a href="URL"><img src="..."></a></td> <<< what image should go in here
    <td><a href="URL"><img src="..."></a></td> <<< what image should go in here

    im still new to this only started learning it about 3 weeks ago
    Last edited by Wipeout; 2010-09-25 at 01:59 PM.

  4. #4
    Legendary! llDemonll's Avatar
    15+ Year Old Account
    Join Date
    Apr 2008
    Location
    Washington
    Posts
    6,582
    If you are trying to get that font in there, then it has to be in image format, you can't format normal text like that. If you have those three images, post dimensions for them here and I'll try and help
    "I'm glad you play better than you read/post on forums." -Ninety
    BF3 Profile | Steam Profile | Assemble a Computer in 9.75 Steps! | Video Rendering Done Right

  5. #5
    Dreadlord
    10+ Year Old Account
    Join Date
    Sep 2010
    Location
    Scotland, U.K
    Posts
    867
    Quote Originally Posted by llDemonll View Post
    If you are trying to get that font in there, then it has to be in image format, you can't format normal text like that. If you have those three images, post dimensions for them here and I'll try and help
    i worked it out after 6 cups of coffee, but u can help with another problem if u want ( or adleast try )... how do i make my website resize to fit visitors monitors ?

  6. #6
    Never going to log into this garbage forum again as long as calling obvious troll obvious troll is the easiest way to get banned.
    Trolling should be.

  7. #7
    Dreadlord
    10+ Year Old Account
    Join Date
    Sep 2010
    Location
    Scotland, U.K
    Posts
    867
    that didnt help what so ever

  8. #8
    Legendary! llDemonll's Avatar
    15+ Year Old Account
    Join Date
    Apr 2008
    Location
    Washington
    Posts
    6,582
    if you want to learn html you have to be willing to put in time, just like the rest of us did.

    tables are the best way to learn web layout for beginners
    "I'm glad you play better than you read/post on forums." -Ninety
    BF3 Profile | Steam Profile | Assemble a Computer in 9.75 Steps! | Video Rendering Done Right

  9. #9
    Here is the Ultimate Guide to HTML.

    Hope it helps.
    News | Forum Guidelines | MMO Champion IRC | Free Games List
    Playing: Guild Wars 2 | APB: Reloaded
    -I don't care what the next expansion is about, as long as the story is dark and rich so I can refer to it as Chocolate WoW.

  10. #10
    Quote Originally Posted by llDemonll View Post
    if you want to learn html you have to be willing to put in time, just like the rest of us did.

    tables are the best way to learn web layout for beginners
    If you're 8 years old and doing some "homepage for beginners" you can pass the course with tables. On the other hand if you're 18 and want to pass some "webdesign" course, you need to do it properly with CSS. CSS2 has been around for a decade or so, for total page layout control all the way from margins to columns. Using tables is considered to be the 'hack' way to do it.
    Never going to log into this garbage forum again as long as calling obvious troll obvious troll is the easiest way to get banned.
    Trolling should be.

  11. #11
    Legendary! llDemonll's Avatar
    15+ Year Old Account
    Join Date
    Apr 2008
    Location
    Washington
    Posts
    6,582
    hi.

    notice i said 'tables are the best way to learn web layout for beginners', and not 'tables are the best way to create web layout'

    no need to get your pants in a bunch because im giving him advice on what would be easiest for him to learn. considering he's using an html developer kit (and provided by the school, my guess at least, means that it will probably be similar to using Word for designing a webpage
    "I'm glad you play better than you read/post on forums." -Ninety
    BF3 Profile | Steam Profile | Assemble a Computer in 9.75 Steps! | Video Rendering Done Right

  12. #12
    Quote Originally Posted by llDemonll View Post
    notice i said 'tables are the best way to learn web layout for beginners', and not 'tables are the best way to create web layout'

    no need to get your pants in a bunch because im giving him advice on what would be easiest for him to learn.
    Regardless of the status of my pants, it's still bad advice to tell people to use table hacks for layout. CSS is not much harder, and it is the correct way to do things.

    Tables should be used for layout only if you're aiming the web pages for browsers that are more than 10 years old or running on very limited embedded system.
    Never going to log into this garbage forum again as long as calling obvious troll obvious troll is the easiest way to get banned.
    Trolling should be.

  13. #13
    Quote Originally Posted by vesseblah View Post
    Regardless of the status of my pants, it's still bad advice to tell people to use table hacks for layout. CSS is not much harder, and it is the correct way to do things.

    Tables should be used for layout only if you're aiming the web pages for browsers that are more than 10 years old or running on very limited embedded system.
    You are mad bro! na seriously you are correct. Tables should not be used for layout IN MOST CASES, depending on your objects and how they have to work 2gether it might work just as good with tables.

    Instead you should learn how to use <div> and css the result will be alot better and more dynamic... also tables can be used for ALOT of good stuff, dont flame tables, tables is doing its best to please you.

  14. #14
    Dreadlord
    10+ Year Old Account
    Join Date
    Sep 2010
    Location
    Scotland, U.K
    Posts
    867
    got most of it working now. just having trouble getting it to automaticlly adjust to fit on the visitors monitors ( resolution wise)

  15. #15
    That's why you'd use CSS. It can do things like scale based on browser window.


    Anyway, how people did it with tables is using percentile sizes instead of absolute pixels.
    Never going to log into this garbage forum again as long as calling obvious troll obvious troll is the easiest way to get banned.
    Trolling should be.

Posting Permissions

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