Results 1 to 3 of 3

Thread: Which languages to learn to build simple cool website?

  1. #1
    Join Date
    Dec 2013
    Posts
    1
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Which languages to learn to build simple cool website?

    Hi All,

    Could anyone advise what kind of programming languages I need to learn to build simple
    versions of these kind of sites?:

    http://www.secondstory.com/
    http://www.boldking.com/
    http://www.toybox.co.nz/
    http://combadi.com/
    http://designshopp.com/


    By a simple version I mean, to look as cool as these sites, however without any shops or special
    interactions with visitors. I only would like the page to have company description, image gallery and
    possibility to submit contact details. However; it must look great!

    Also, after I'll make the website ready I would like that the final user, who won't know how to program,
    be able to edit the content.

    I have recently started learning JavaScript, and then I plan to learn HTML5 and CSS.

    I've also heard about Ruby on Rails, Backbone.js, Underscore.js, jQuery, AJAX, Drupal and Wordpress.
    Do I need any of these for a simple site?

    In a future I'll be doing mobile version of the website, for Android and iOS. Should I now take it into
    consideration while choosing programming languages or is it a totally separate thing?

    Finally, does anyone know a good free tutorial / website which explains how to build modern websites
    with the current "hottest" tools / languages?.

    Thanks!
    Last edited by jscheuer1; 12-12-2013 at 02:45 PM. Reason: Format

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    This is really too general of a question.

    All web sites use a combination of HTML, css, javascript, and one or more server side languages. The proportions vary depending upon the desired results


    Setup you page or web site. If you have a specific question/problem, let us know.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    imivvi (12-14-2013)

  4. #3
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    Quote Originally Posted by imivvi View Post
    a simple version I mean, to look as cool as these sites, however without any shops or special
    interactions with visitors. I only would like the page to have company description, image gallery and
    possibility to submit contact details. However; it must look great!

    Also, after I'll make the website ready I would like that the final user, who won't know how to program,
    be able to edit the content.
    Adding the ability to edit content without coding makes the site "not simple."

    Quote Originally Posted by imivvi View Post
    I have recently started learning JavaScript, and then I plan to learn HTML5 and CSS.
    Cool.

    Quote Originally Posted by imivvi View Post
    I've also heard about Ruby on Rails, Backbone.js, Underscore.js, jQuery, AJAX, Drupal and Wordpress.
    Do I need any of these for a simple site?
    No. But as I said above, editable content is not "simple."

    Additionally, the things you mention are not "programming languages."

    Backbone, underscore, and jQuery are all code libraries, not languages. They are all javascript.

    Ruby on Rails is also a code library—for web-specific programming in the Ruby language.

    AJAX is a javascript technology - it allows you to make an http request (e.g., exactly like submitting a form does) without leaving the page you're on.

    Drupal and WordPress are Content Management Systems, not languages. They are software that allows you to manage websites via "control panels" instead of by directly working with the code. Both of these systems are written primarily in PHP, but that's not a requirement.

    Quote Originally Posted by imivvi View Post
    In a future I'll be doing mobile version of the website, for Android and iOS. Should I now take it into
    consideration while choosing programming languages or is it a totally separate thing?
    Mobile-specific versions of web sites are, generally speaking, a bad idea. It's the wrong solution to a simple problem. Instead, learn about "responsive design."

    Quote Originally Posted by imivvi View Post
    Finally, does anyone know a good free tutorial / website which explains how to build modern websites
    with the current "hottest" tools / languages?.
    You shouldn't be making choices based on what is "hottest."

    For now, stick to HTML + CSS, then look at javascript. You need a strong foundation first.

  5. The Following User Says Thank You to traq For This Useful Post:

    imivvi (12-14-2013)

Similar Threads

  1. Need to create a simple 'update text on website' from a simple admin page
    By jamiemyburgh in forum Looking for such a script or service
    Replies: 2
    Last Post: 07-01-2013, 02:49 PM
  2. Replies: 1
    Last Post: 05-22-2013, 04:28 AM
  3. Replies: 0
    Last Post: 05-09-2009, 10:16 PM
  4. How to Learn to Build Simple CMS
    By Steven in forum Other
    Replies: 3
    Last Post: 06-28-2007, 04:23 PM
  5. Replies: 0
    Last Post: 11-27-2004, 10:09 AM

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
  •