|
|
|
|
|
by russell
6326 days ago
|
|
Start with a static website on your own computer. You need to learn things in this order. HTML CSS so you can style your pages JavaScript so you can do dynamic things JQuery makes JavaScript much easier With this you can actually publish a fully functional web site with a hosting company. The server side is needed if you have a high volume site or one with dynamic content, such as a shopping site or with visitor created content. For that you need an application server: Django, PHP, Rails, Tomcat, Jboss, etc. About that time you will need to think about databases and SQL. My advice is to learn how to create good pages before learning the server side. |
|