29
Getting started with minimal tech experience?
(slrpnk.net)
Community for the appreciation and sharing of links, resources, and culture of: the smol web / small web / ~(w)~ / the indie web / or even the non-www internet (gemini, gopher, etc).
Back of a napkin definition, subject to change: if it's internet accessible and is maintained by a person, especially for non-commercial aims, then I would consider it smol. There are, however, much stricter definitions.
HTML is the basic language that describes the layout of your webpage, the text, etc.
CSS is for the looks of everything.
JavaScript lets you have interactive things on the website.
TypeScript is JavaScript with extra features for the developers, but it compiles down to JavaScript still.
Python is a scripting language that you can use to create a webserver. You can also do that with JavaScript. There are also ways to make Python run in the browser but it's still in its infancy tbh.
Edit: Hence, I would suggest to first learn to make some static websites with HTML and CSS and later JavaScript. Those are basics that you will need to know, even if you use other frameworks, i.e., I would not recommend looking into React or Python (Flask) etc. until much later, because they all presume that you already know HTML+CSS+JS. Hit me up if you have any questions or need some assistance.