Page 1 of 3 123 LastLast
Results 1 to 10 of 22

Thread: Codes where should I start?

  1. #1
    Join Date
    Apr 2007
    Location
    Walkerton Canada
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Codes where should I start?

    I am new to coding and I was wondering where I should start and what are good places to learn. I already have a very basic understanding of HTML, but I think I still have a lot too learn. Boxxertrumps told me w3schools was good and I normally learn a few codes during class. If you could also say what the functions/use of the different languages are that would be great. Thanks.

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    well I would get a good handle on the web correctly. Meaning that you follow the 3 tiers of web development on the client side (browser)

    Structure/Skeleton - HyperText Markup Language
    Presentation/Cosmetic Looks - Cascading Style Sheets
    Action/Dynamic - Javascript

    For now I would start on the first two, and using them in combination to get a page looking how you want, then you can slowly learn the additives of more advanced programming. I said Javascript, because it is one of the easiest to learn, and if you invest the time correctly to really learn the basis of the programming, then you are so much better of, as all programming languages have the same basic structure syntax, and you just need to learn the nuances/specifics of the others.
    There are tons of resources out there, but I would say that w3schools is one of the best, as it literally is the standards maker of the industry, and there are plenty of people here too incase you have a brain cramp, or need clarification on something

  3. #3
    Join Date
    Apr 2007
    Location
    Phoenix, AZ
    Posts
    64
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I can recommend the O'Reilly books "Nutshell" series for a good overview of different coding languages. I'm currently reading "Web Design In A Nutshell" (http://www.oreilly.com/catalog/wdnut3/) which seems like it might be an excellent place to start for you. It covers the basics of HTML, CSS, and a few other important related items.

    // EDIT: I just saw a review where someone said that they thought that book was better for people who are a little more advanced. I have to admit I've been at it for a couple of years now, so I may not be the best judge of what will work for a beginner. I'd make sure to read the first few pages before I bought it.
    Last edited by nwalton; 04-28-2007 at 04:09 AM. Reason: Clarification

  4. #4
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    And don't forget about the server.
    Server side programming, CGI, .htaccess, mail servers, etc etc. are all possible, so you might want to look into those as options too.
    PHP is an easy way to get started, but there are other things available too.
    Databases also fall in this.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

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

    Default

    all programming languages have the same basic structure syntax, and you just need to learn the nuances/specifics of the others.
    Somebody's never tried Haskell Functional programming languages are very different, and the syntax of imperative languages can vary quite a bit too.
    I would say that w3schools is one of the best, as it literally is the standards maker of the industry
    No they aren't. w3schools is completely unrelated to the W3C.

    My current favourite tutorial site is HowToCreate.co.uk.
    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
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Quote Originally Posted by djr33 View Post
    And don't forget about the server.
    Server side programming, CGI, .htaccess, mail servers, etc etc. are all possible, so you might want to look into those as options too.
    PHP is an easy way to get started, but there are other things available too.
    Databases also fall in this.
    yah i agree that server side languages are a very good tool, but if he is just starting to learn, wouldn't it be better for him to get a good base before he moves up to the server side web coding?

    and what i was really trying to point out, but in the end failed to mention is to not get into the habit of using nested tables as his layout coding technique of choice. they are painfully dreadful to change design on, and you can accomplish the same and lots more with just a tiny bit more effort in css... not to mention the portability advantages of css

  7. #7
    Join Date
    Apr 2007
    Location
    Walkerton Canada
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I was wondering is Notepad just for HTML or can you use other languages?

  8. #8
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    You can use Notepad to edit any plain text source code (HTML, CSS, Javascript, PHP, ASP, Perl, etc).

    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  9. #9
    Join Date
    Apr 2007
    Location
    Walkerton Canada
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yes it does thanks.

  10. #10
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    a lot of people use notepad for coding, but i use a front-end developer called dreamweaver. I dont use the "design view" which means you type in text and put images here and there because the program adds all this extra junk, rather i use the "coding view" and i hard code all my scripts, then I "preview" what i have with the design view. the coding view also allows me to see different color schemes for various elements, making real-time debugging very easy for me. dreamweaver is unfortunately a paid program, however there is a couple of free editors out there that utilize a couple of different schematics, if you do feel that need to use something other than Notepad

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
  •