DEV Community

Discussion on: What are some misconceptions about web development?

Collapse
 
barbu110 profile image
Victor Barbu

They are not programming languages. Front end is easy as long as it’s not too complex. After that, it becomes a challenge indeed.

Collapse
 
martixy profile image
Martin Ninov

And if my grandma had wheels she would have been a bike.

Collapse
 
cheetah100 profile image
Peter Harrison

HTML is a markup language. Javascript is a full on language. There was a time when front end development was second class, but today there is no real distinction between front end and back end in terms of skillsets.

Thread Thread
 
fluffynuts profile image
Davyd McColl

They are all programming languages. Some are declarative, some are imperative. A declarative language like CSS doesn't make it "less than" or not "full on".

Thread Thread
 
cheetah100 profile image
Peter Harrison

I didn't say CSS is less than. It has its function as a cascading style sheet in the context of HTML. HTML itself is a markup system for content, even if ironically the content these days is delivered through REST API more often than not. Front end development usually involves some kind of framework like Angular, Vue, or React. Each technology has its place. However, if you only know HTML and CSS I don't know how you would fare in a modern web application development environment.

Thread Thread
 
12boxbandit05 profile image
Christopher

I'm currently trying to self teach myself and if you wouldn't mind answering a beginner's question, what should I learn besides HTML and CSS? I had planned JS as my third lesson.

Thread Thread
 
fluffynuts profile image
Davyd McColl

JS is a good place to go next! You'll be able to use it almost immediately with the HTML/CSS knowledge you have, and, in addition, you'll be able to start doing back-end stuff on Node. If possible, get going with TypeScript -- there's a little extra overhead, but it will (a) help you to make fewer mistakes and (b) set you up for Angular or React (and you can use it effectively with Vue too, and on the backend!)

Thread Thread
 
jacoby profile image
Dave Jacoby

Just dropping into add that you can solve FizzBuzz with just HTML and CSS.

Collapse
 
guitarino profile image
Kirill Shestakov

If your definition of a programming language is "structured text which represents machine instructions", then, yes, HTML and CSS are programming languages. But, instead of imperatively saying "add an element X to parent Y", it's written declaratively as <Y><X></X></Y>. And, since there's no branching instructions in HTML, it's not turning complete.

Funny enough, under the same definition, markdown is also considered a programming language, meaning I just wrote a little program πŸ™‚