DEV Community

Discussion on: Responsive Web Design Certified!πŸ‘¨πŸ»β€πŸ’»

Collapse
 
joelbonetr profile image
JoelBonetR πŸ₯‡ • Edited

Congratulations! πŸ˜„
FreeCodeCamp is a good place to start with web development, I suggest you to continue with those certificates.

As tip, don't describe HTML or CSS as programming languages, adding the explanation below for educational purposes.

  • HTML is a markup language. A markup language is a way of encoding a document that, along with the text, incorporates tags or marks that contain additional information about the structure of the text or its presentation.
  • CSS (Cascading Style Sheets) is a graphic design language for defining and creating the presentation of a structured document written in a markup language such as HTML.

The main reason why HTML and CSS aren’t considered programming languages is because they only determine the structure and the style of the webpage you’re building.

Regarding the latest updates on CSS it may be considered as programming language in a future as it's getting nice capabilities (we can now create CSS variables and great stuff).

JavaScript it is in fact a programming language and if you follow the Algorithms and Data Structures certification you are going to see those differences soon :)

Have a great day!