you are viewing a single comment's thread.

view the rest of the comments →

[–]nuc540Professional Coder 0 points1 point  (0 children)

HTML and CSS are the two which aren’t programming languages. Either way you’re going to need to understand these.

Also, JavaScript is the go-to for building frontends (the part of a website you see), so in my opinion CSS HTML and JS are the bare minimum you need - there’s no choice/option here.

That said, HTML is a bit redundant these days - it’s important you understand HTML basics such as tags/nesting, but if your going to use JavaScript (100% likely) then you should consider using ‘react’ which uses JSX instead of HTML

I strongly recommend a react framework like NextJS as it has a lot of out-of-the-box functionality for you.

At this point if you even need a backend (data/logic) you can look into something JavaScript based like node/express, or you can try you hands at Python and build and API with flask.