🌐
Reddit
reddit.com › r/learnprogramming › how much information/difficulty is html/css compared to c++ for learnings...
How much information/difficulty is HTML/CSS compared to c++ for learnings... : r/learnprogramming
June 24, 2018 - I'm still learning web development languages. I'm fluent in c++ and programming concepts as a whole, so kind of the same situation? Html was stupid easy to pick up, but css is taking time to understand. Actually, it's not hard to understand at all, but there are so many things to learn.
🌐
Sololearn
sololearn.com › en › Discuss › 1321509 › which-is-the-easiest-coding-language-between-c-and-html-
Which is the easiest coding language between c and html ??? | Sololearn: Learn to code for FREE!
C is ok to learn, but quite hard to master. Html is even easier to learn but you can't do much without learning other things like CSS and JavaScript and the sum of learning it all is a bit hard too.
Discussions

How much harder is learning a programming language than html/css?
A programming language itself isn't difficult to learn syntax-wise (Unless it's one of those estoric languages such as brainfuck ). As a software engineer learning web dev in my free time, I don't find the syntax from C/C++/Python any more difficult to learn than HTML/CSS syntax (In fact, I have to lookup HTML tags more often than I'd like because I don't remember them all!). Learning to write good code is another story. Since you're already familiar with HTML/CSS, I'd go for Javascript to complete the circle, so to speak. JS is as much a "real" programming language as any, with a very easy-to-learn syntax (but be careful about the numerous gotchas! ). To write good code, you'll want to start with computer science fundamentals, and not dive right in to hacking (reusing or repurposing) existing codes! Too many people start off copy pasting something they found online, and changing a line here and there to make things work, and end up writing horrible code that some other engineer down the line has to fix. We really really hate to be on the end of that stick. I'd start with something like CS101 or Programming 1 , then move onto algorithms and data structures . Most likely, you won't need to memorize every data structure or algorithm, but just to be aware that they exist and to know to lookup and use the right one(s) when required. More on reddit.com
🌐 r/webdev
8
1
April 24, 2014
Choice between c++ and HTML
Yeah, those are about as polar opposite as you can get. HTML isn't even a programming language. It's a computer language, but it's not used to program things - you just use it to make static websites, like a restaurant web page that has some images and opening hours. It's totally worth learning as it's an important thing to learn if you want to build anything for the web, but it's not programming. It's relatively easy to learn. C++ is difficult and in particular it's not all that beginner-friendly. Compared to some programming languages, it takes more code to do less stuff in C++ and if you make a mistake it can fail in very confusing and unexpected ways. However, it's not all bad. C++ is a very important and useful programming language. It's been around a long time so there are tons of books, websites, and free courses to help you. And it's kind of like learning stick shift - it's harder at first, but other programming will seem easier in comparison if you learn it first! So given those two I'd take the C++ course and learn HTML on your own. More on reddit.com
🌐 r/learnprogramming
9
0
September 4, 2019
Which aspect of the HTML-CSS-JS trio is the most difficult to do in your opinion?
I thought the same on CSS. It was probably the one that took me the longest to understand, but enough practice and I made it my bitch. It’s actually pretty cool what you can do with pure CSS. More on reddit.com
🌐 r/webdev
22
9
March 9, 2022
How difficult would it be to learn JavaScript, HTML, and CSS if I'm already reasonably competent in C/C++ and know a little embedded systems?
You'll pick up JS very quickly but there are some pretty strange quirks that'll drive you crazy until you get used to them. More on reddit.com
🌐 r/learnprogramming
30
25
April 26, 2022
🌐
Quora
quora.com › Which-is-easier-to-learn-C-Java-or-HTML
Which is easier to learn, C++, Java, or HTML? - Quora
Answer (1 of 9): In my opinion HTML is the easiest one to learn first and is very useful for web development. Even C++ is easier to learn when compared to java. In java you have to learn about many inbuilt packages which takes more time.
🌐
Cprogramming
cboard.cprogramming.com › cplusplus-programming › 5187-cplusplus-vs-html.html
C++ vs. HTML
HTML is used for designing webpages; while, C++ is used for designing programs. They also use different language because of their different purposes. ... Ok, one more question about this..is it easy to learn..and where would I use C++ in Web Development? Thanks ( I hate to be a bother)
🌐
Quora
quora.com › Is-HTML-harder-than-C
Is HTML harder than C++? - Quora
Answer (1 of 9): As someone who has a reasonably good command of both: There are much, much more people in the world that know almost everything about C++ than there are who know almost everything about HTML. People who think that HTML is trivial clearly have no idea what they are talking about....
🌐
Career Karma
careerkarma.com › blog › coding › how hard is it to learn html?
How Hard Is It to Learn HTML?
January 8, 2022 - At this stage, focus on creating a functional web page. The level of difficulty depends on the technical background of the user. For most people, HTML is easier to grasp than CSS (Cascading Style Sheets).
🌐
Sololearn
sololearn.com › en › Discuss › 1442618 › what-is-harder-html-or-c
What is harder, html or c++ | Sololearn: Learn to code for FREE!
August 7, 2018 - i moved from java which is similar to c++ and started learning html,css,and javascript and i would say c++ would probably be better to start with if your planning to do this but if its just html on its own then that would definitly the easiest lesson
🌐
Reddit
reddit.com › r/webdev › how much harder is learning a programming language than html/css?
r/webdev on Reddit: How much harder is learning a programming language than html/css?
April 24, 2014 -

I was just wondering how much more difficult learning a programming language like javascript, python or ruby is compared to html/css. I am picking up the latter pretty easily, but I must admit to being a little intimidated by a real programming language.

Top answer
1 of 5
3
A programming language itself isn't difficult to learn syntax-wise (Unless it's one of those estoric languages such as brainfuck ). As a software engineer learning web dev in my free time, I don't find the syntax from C/C++/Python any more difficult to learn than HTML/CSS syntax (In fact, I have to lookup HTML tags more often than I'd like because I don't remember them all!). Learning to write good code is another story. Since you're already familiar with HTML/CSS, I'd go for Javascript to complete the circle, so to speak. JS is as much a "real" programming language as any, with a very easy-to-learn syntax (but be careful about the numerous gotchas! ). To write good code, you'll want to start with computer science fundamentals, and not dive right in to hacking (reusing or repurposing) existing codes! Too many people start off copy pasting something they found online, and changing a line here and there to make things work, and end up writing horrible code that some other engineer down the line has to fix. We really really hate to be on the end of that stick. I'd start with something like CS101 or Programming 1 , then move onto algorithms and data structures . Most likely, you won't need to memorize every data structure or algorithm, but just to be aware that they exist and to know to lookup and use the right one(s) when required.
2 of 5
2
Personally, I find CSS positioning much harder than ruby/javascript/python. Don't be intimidated by the haters. I'm pretty sure my first foray into javascript was looking over the source of single-feature websites like emergencycompliment.com , then shamelessly copying/modifying/experimenting with it. Don't just copy/paste stuff you don't understand, but it's a decent way to get your start and discover the language.
Find elsewhere
🌐
Sololearn
sololearn.com › en › Discuss › 1077077 › which-is-harder-html-or-css
Which is harder? Html or css? | Sololearn: Learn to code for FREE!
HTML is easy, CSS is harder because there are topics like animations, media queries, 'advanced' selectors, preprocessors, OOCSS, SMACSS, Flexbox, CSS Grid, frameworks and more ...
🌐
Reddit
reddit.com › r/learnprogramming › choice between c++ and html
r/learnprogramming on Reddit: Choice between c++ and HTML
September 4, 2019 -

So in school for my 10th class i had to choose between c++ and HTML. One of my friends told me that html is a lot easier but i decided to stick with c++ i want to find out how hard is c++ and will my choice just make me feel like dying?

Top answer
1 of 5
2
Yeah, those are about as polar opposite as you can get. HTML isn't even a programming language. It's a computer language, but it's not used to program things - you just use it to make static websites, like a restaurant web page that has some images and opening hours. It's totally worth learning as it's an important thing to learn if you want to build anything for the web, but it's not programming. It's relatively easy to learn. C++ is difficult and in particular it's not all that beginner-friendly. Compared to some programming languages, it takes more code to do less stuff in C++ and if you make a mistake it can fail in very confusing and unexpected ways. However, it's not all bad. C++ is a very important and useful programming language. It's been around a long time so there are tons of books, websites, and free courses to help you. And it's kind of like learning stick shift - it's harder at first, but other programming will seem easier in comparison if you learn it first! So given those two I'd take the C++ course and learn HTML on your own.
2 of 5
2
It's apples and oranges really. HTML is a markup language, meaning that you're not writing code to process data or build functionality. Instead, it's to structure content on a web page like text and images. C++ on the other hand is a relatively low-level coding language. That means that you're actually writing programs that perform functions. When I say it's low-level, I'm referring to how specifically you control every little thing that goes on, like which memory addresses data will be stored in and what data types your variables are. Something higher-level can be easier to learn but will sometimes come with tradeoffs in performance and how much control you have over how things are done. C++ isn't a bad language to start out with. It's where I began learning, and even though it can be a challenge it can set a good foundation if you decide to keep at it and learn more advanced stuff.
🌐
Quora
quora.com › What-is-the-difficulty-level-of-HTML-compared-to-other-programming-languages
What is the difficulty level of HTML compared to other programming languages? - Quora
It is a markup language used to describe the organization of information. It never has been a programming language. HTML is not difficult to learn. But without also learning CSS (a style sheet language, not a programming language) and JavaScript...
🌐
Sololearn
sololearn.com › en › Discuss › 571031 › is-html-easier-than-c-also-is-it-more-useful-than-c
Is HTML easier than C++? Also is it more useful than C++? | Sololearn: Learn to code for FREE!
(HTML - Hypertext Markup Language). HTML is a lot easier to understand, learning C++ is difficult for a newbie. Also they are both useful but in different places - HTML is used for building sites.
🌐
Tripleten
tripleten.com › blog › posts › how-hard-is-it-to-learn-html-lets-break-the-myths
How Hard is It to Learn HTML? Let’s Break The Myths - tripleten.com/blog
December 5, 2025 - There are plenty of online courses and tutorials available that cover the basics of HTML, making it easier than ever to start learning.
🌐
Stepofweb
stepofweb.com › comparing html with c++: which is simpler?
Comparing HTML with C++: Which is simpler?
October 18, 2025 - It means that it can be more difficult to work with some programming languages than others. If you want to go into a career in web development, you need to know how to code. You should learn Javascript instead of Python. Although you. It all depends on what you are interested in, unless I suggest HTML.
🌐
Quora
quora.com › Which-is-more-challenging-to-learn-HTML-or-CSS-What-makes-it-more-difficult-For-beginners-in-web-development-which-language-should-they-start-with-and-why
Which is more challenging to learn, HTML or CSS? What makes it more difficult? For beginners in web development, which language should they start with and why? - Quora
Answer: Both are easy and closely related to each other. Most people learn them together. HTML is basically for layouts, and CSS is for styling and decorating the layout. Example: If you want to write words on a page, you use HTML, if you want ...
🌐
Sololearn
sololearn.com › en › Discuss › 2950095 › learning-html-is-simple-or-harder-than-python
Learning html is simple or harder than python?
December 28, 2021 - Sololearn is the world's largest community of people learning to code. With over 25 programming courses, choose from thousands of topics to learn how to code, brush up your programming knowledge, upskill your technical ability, or stay informed about the latest trends.
🌐
Reddit
reddit.com › r/webdev › which aspect of the html-css-js trio is the most difficult to do in your opinion?
r/webdev on Reddit: Which aspect of the HTML-CSS-JS trio is the most difficult to do in your opinion?
March 9, 2022 -

In my personal experience, CSS feels the most difficult to wield, HTML is easy for me, since I understand how specific tags provide and use it to it's potential. JS is more difficult, but I have pre-knowledge of programming from C, C++, C#, Java. CSS is really nerve wracking, i can't even center the items, and forcing to use flexbox, even then it is hard to do it. BUt that's just my personal knowledge. But what are your opinions? Which aspect do you think is the hardest?

🌐
Netlify
internetingishard.netlify.app › html-and-css › introduction
Introduction | HTML & CSS Is Hard
Fully leveraging your text editor is the craftsmanship part of learning HTML and CSS. The only real prerequisite for a good web browser is that it’s up to date and in mainstream usage. Chrome and Firefox are favorites amongst web developers. Safari is alright if you’re running OS X, too. We strongly suggest not creating websites with Internet Explorer. Professional web development often requires an efficient way to test code on all of these browsers, but that’s a little more complicated than what we need right now.
🌐
TheServerSide
theserverside.com › feature › Is-HTML-a-programming-language
Is HTML a programming language? | TheServerSide
To further the point, any time complicated processing is required to render an HTML page, a real program must be injected into the mix. This is why we see HTML regularly combined with Java, PERL and PHP on the server, and JavaScript on the client. HTML is not a programming language.
Published   July 7, 2022
🌐
Reddit
reddit.com › r/learnprogramming › how difficult would it be to learn javascript, html, and css if i'm already reasonably competent in c/c++ and know a little embedded systems?
r/learnprogramming on Reddit: How difficult would it be to learn JavaScript, HTML, and CSS if I'm already reasonably competent in C/C++ and know a little embedded systems?
April 26, 2022 -

I'm trying to make myself more employable as software engineering intern/junior developer for while I finish my EE degree (I want a career related to both EE and SE after I graduate, so probably something in embedded systems), but most of them want at least some knowledge of web dev. That makes sense and I'm not opposed to learning it, but I wanna make sure it's a reasonable goal while I'll also be taking EE classes. How much work would you anticipate is needed to get to where I'd have enough knowledge to have a reasonable shot at an SE internship, given I already have some competency in another programming field?