Username:

Password:

Author Topic: What to Begin With: Programming, HTML, or CSS?  (Read 355 times)

petersen2020

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 29
What to Begin With: Programming, HTML, or CSS?
« on: February 19, 2011, 10:05:24 AM »

Hello,

I am a complete noob when it comes to computer languages and computer manipulation. My main goal is to attain the ability to create websites that are not simple pure html and then be able to program and/or interact with important computer files with confidence.

I have been told to start learning Dreamweaver and InDesign. But then, a computer savvy friend of mine told me to learn “HTML + CSS + Javascript +Django” and also mentioned something about “Python.” And yet another friend said that Ruby on Rails is the way to go.

As you may think, I’m still completely confused as to what is the best thing to do is.

What should I start with, is truly the question.
_________________________________________________________
Link Building|Link Building Services
Logged

alp12ha

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 10
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #1 on: March 09, 2011, 11:53:22 PM »
I think you first start HTML
it is an easy language
then you start css
Logged
Imagination is more important than Knowledge - Einstein

chaimharry

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 5
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #2 on: July 25, 2011, 07:19:11 PM »
Well there are so many languages available in the programming.But HTML is very easy and basic to learn so you have to go for it first.After that you can go for the CSS too.You can also go for the C and C++ as a basic languages.

netshet

  • Jr. Member
  • **
  • Karma: +0/-0
  • Posts: 53
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #3 on: August 02, 2011, 05:36:43 PM »
In general, web programming can be divided up into two parts: the markup (HTML+CSS) and the programming (Javascript+Python/Django+Ruby/Rails+PHP… These two parts are pretty well separated- once you get past the basics, the HTML and the CSS part is basically art. The programming is more of engineering. Though you certainly can't learn CSS first- it's a complement to HTML, and completely worthless without it. I would start off just learning HTML because it's fairly simple, then learn the CSS so you can make more complex layouts. Once you get the hang of that, move on to programming.

Like your friends suggested, you should probably start out with either Python or Ruby. Both of those are fairly simple but very powerful languages with large communities that can help you if you have any questions. Personally, I find Python easier to read than Ruby but that may just be because I have more experience with it. You're also going to need to learn Javascript, which is the only language that runs in the client side of a web application (the browser). Once you learn how to program (which is way more than just writing code), you'll have to learn to use one of the Web Frameworks. The frameworks are toolkits that get take care of most of the work running the website- you just tell it what do to and what to show, and it will show it. Django is the most popular web framework that runs on Python, while Rails is the most popular framework for Ruby. Both of them use a pattern called Model-View-Controller. In the Model, you describe what data you're going to store. In the view, you describe how you're going to show the data, by generating HTML pages. For the most part, you generate the HTML pages by filling in the blanks in templates you create. Both Django and Ruby come with templating engines that make this easy to do- one of the reasons to use a web framework instead of trying to write the backend from scratch. The controller, the final part of the program, is where you actually do the logic in the program. It takes data from the model, processes it, and then hands it over to the view to show to the user.

perth

  • Sr. Member
  • ****
  • Karma: +0/-0
  • Posts: 278
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #4 on: January 03, 2012, 02:07:25 AM »
i think HTML is better

2012 webmaster

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #5 on: January 03, 2012, 03:48:29 PM »
Start with html and css, you much know this before you can go onto any programing.
Logged

vsoftnic12

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 11
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #6 on: January 19, 2012, 02:03:28 AM »
I think so you should learn that thing which is interesting for you.

cashcars

  • Full Member
  • ***
  • Karma: +0/-0
  • Posts: 196
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #7 on: January 23, 2012, 05:25:47 AM »


<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>



What is HTML?

HTML is a language for describing web pages.

    HTML stands for Hyper Text Markup Language
    HTML is not a programming language, it is a markup language
    A markup language is a set of markup tags
    HTML uses markup tags to describe web pages

evantanski

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 6
Re: What to Begin With: Programming, HTML, or CSS?
« Reply #8 on: January 29, 2012, 10:20:45 PM »
HTML then move onto CSS. CSS makes the HTML look good. People always say move onto JavaScript after you learn HTML and CSS but I would suggest moving onto PHP or some other kind of server side language. JavaScript can be used to validate forms and sending information to a database without having to refresh the page but it's mostly used for effects and making the site more user friendly.