I am new here friends. with which language should i start to be more comfortable to become a programmer

Tell us what’s happening:

Your code so far


<h1>Hello</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements/

What kind of programming do you want to do? If it is front end, HTML is the place to start.

1 Like

This.

Although keep in mind that neither HTML or CSS (which goes along HTML) isn’t programming. One is a markup language (HTML), other is simply for styling things (CSS).
Programming comes after those two, namely Javascript. Don’t disregard the basics though, if you want to get into web development they’ll really come in handy.

If you’re not interested in web development, there are many other choices, for example:

  1. C++ or C# for game development
  2. Python for all sorts of things - servers, data science, machine learning/AI
  3. Mobile development - Java for Android, Swift for iOS
  4. Many more.

Keep in mind that they’re all very interchangable and can be used for many more purposes than listed. For example, python can also be used for game development or web development. C++ or Java can be used for creating servers, and so on.
Javascript which you’ll learn if you want to get into web development is also extremely flexible. It can be used for creating servers, machine learning, game development (not recommended), mobile and desktop apps development.

Just pick one and stick with it. I recommend Javascript and would advise you get into web development basics first (HTML and CSS).

1 Like