Web Design Advice

Discussion in 'Gaming' started by Jadef17, Sep 3, 2005.

  1. Jadef17

    Jadef17 Well-Known Member

    Posts:
    548
    Likes Received:
    0
    Joined:
    Mar 3, 2005
    Ok basically, I really want to get into web design, but I'm not really sure what the best way is to start. Some say Dreamweaver, some say photoshop, some say html. Basically I would like to know what some of you have found is the best way to begin to learn. What do you learn first and what to follow that with. Anyways your imput would be appreciated.
     
  2. Jtown112

    Jtown112 Well-Known Member

    Posts:
    127
    Likes Received:
    0
    Joined:
    May 17, 2005
    depending on your age, you might want to take a class on it to get the basics and experiment on your own too. vist html sites. i heard dreamweaver was nice too.
     
  3. 4nub1s

    4nub1s Senior Member

    Posts:
    3,476
    Likes Received:
    0
    Joined:
    Feb 24, 2005
    Location:
    Beyond Reality
    The basics for most people are html, graphics are kind of a side thing. They help, but are not required to know... you can always find people to do those for you.

    Running a site reuires at least some knowledge of how to code, the more proficient you are... the better your site. ;)

    Once you feel comfortable with html, which isn't to hard to learn... you should pick up some javascript, xml, css, php, and any other web languages you may feel necessary to learn. If you want a site with server-side scripting for like making a shopping-cart or something like that, you should learn asp also.
     
  4. Jtown112

    Jtown112 Well-Known Member

    Posts:
    127
    Likes Received:
    0
    Joined:
    May 17, 2005
    i, myself, am taking a class learning java. last year i had a slim explanation of html, so i learned a bit of that. i was thinking about getting a domain and messing around with html so i can see what i can do with it and pick up new stuff.
     
  5. Jadef17

    Jadef17 Well-Known Member

    Posts:
    548
    Likes Received:
    0
    Joined:
    Mar 3, 2005
    hmmm yeah so basically you'd recommend getting all your coding down first before really learning a program like dreamweaver?
     
  6. Rannek

    Rannek Well-Known Member

    Age:
    33
    Posts:
    1,094
    Likes Received:
    0
    Joined:
    Sep 1, 2004
    Location:
    Lorain, Ohio
  7. frozen-slayer

    frozen-slayer Well-Known Member

    Posts:
    56
    Likes Received:
    0
    Joined:
    Aug 13, 2005
    try learning php its the best
     
  8. Jadef17

    Jadef17 Well-Known Member

    Posts:
    548
    Likes Received:
    0
    Joined:
    Mar 3, 2005
    so use photoshop to create the page... and then code it with html and php? or is it easier to code in dreamweaver? oh and thanks rannek for your article.
     
  9. Doom89

    Doom89 Well-Known Member

    Age:
    35
    Posts:
    51
    Likes Received:
    0
    Joined:
    May 17, 2005
    Play with photoshop, get to know all of its functions and tools. Thats what i did, now you give me any template and most likely i'll re-create it in no time. Or in the worst case my final outcome will be somewhat close to the original.
     
  10. XxLostXx

    XxLostXx Well-Known Member

    Age:
    32
    Posts:
    803
    Likes Received:
    0
    Joined:
    Aug 22, 2005
    Location:
    homeless
    First learn how to make a simple template in photoshop then keep practicing till you get better and better then when you're happy with a template , learn how to slice it and save it for the web. Then open any website editor such as Dreamweaver and Microsoft Frontpage and code it or if you haven't yet got the knowledge of these programs either play with tools till you understand it (like i did with photoshop and dreamweaver) and just carry on getting better.
     
  11. elecktricity

    elecktricity Well-Known Member

    Age:
    34
    Posts:
    136
    Likes Received:
    0
    Joined:
    Aug 6, 2005
    Location:
    Trapped in my own little world.
    well I started out with one of them groups.msn.com sites and kept looking at the code to see what did what and eventually learned html then got into photoshop, then I got here lol, now im learning php, but yea i'd say that it was an easy learn.
     
  12. XxLostXx

    XxLostXx Well-Known Member

    Age:
    32
    Posts:
    803
    Likes Received:
    0
    Joined:
    Aug 22, 2005
    Location:
    homeless
    Yeah I'm also busy learning php and a bit of MySql...
     
  13. Jadef17

    Jadef17 Well-Known Member

    Posts:
    548
    Likes Received:
    0
    Joined:
    Mar 3, 2005
    aighty thanks for all of the advice... I think i'll mess around with creating templates and such in photoshop as alot of you have suggested. after that then i guess I can learn all of the coding aspect.
     
  14. LemoNade

    LemoNade Well-Known Member

    Age:
    34
    Posts:
    500
    Likes Received:
    0
    Joined:
    Dec 21, 2004
    Location:
    Southampton, England
    Yeah, thats great advice to someone who is just starting web design. Djeez...

    To start off with web design, you must learn HTML (Hyper-Text Markup Language). This is basically a set of instructions sent to your browser on how to display a web page. A simple HTML page would look like this:

    Code:
    <html>
    <head>
    <title>Test Page</title>
    </head>
    <body>
    [b]This is a test page[/b]
    </body>
    <html>
    Copy/Paste that into Notepad, save to your Desktop as index.htm and run in your preferred browser - Thats a simple HTML page :)

    The best way to go about learning this (in my opinion) is to visit the HTML section on www.w3schools.com, where it is easily explained and very clear. Macromedia Dreamweaver is an excellent application for coding websites, including HTML, as it uses syntax highlighting and other features to make your code simple and readable. I strongly recommend *aquiring* it to help you.

    CSS (Cascading Style Sheets) are another set of instructions beside your HTML page which defines styles for your site, but this isnt important to learn at first as a lot of the CSS code can be defined in HTML.

    Many websites that are graphically intense (For example, the ones posted in the 'Website Templates' forum) are designed firstly in Adobe Photoshop which is worth playing around with if thats the route you want to go down. Firstly, you would design the entire site as you would like it to finish up as in Photoshop, before slicing it up into lots of sections and finally putting it back together as HTML in Dreamweaver (or similiar).

    To assist you, I recommend www.good-tutorials.com for thousands of Adobe Photoshop tutorials and also www.pixel2life.com which has tutorials for Photoshop, Dreamweaver, HTML, CSS etc etc.

    Hope that made sense and gives you something to start with :)

    -LemoNade-
     

Share This Page