Code indentation and notes on what each piece of code do?
Hello, I was wondering if there's any program and style you recommend me to indent all of my codes (By style I mean if putting titles in someway, creating a lot of css files for individual things instead of joining all of the code in one file, etc).
And also when I started creating my code I didn't put any "Names" or whatever this: /* */ is called to the mayority of my code lines.
I was thinking if there was a webpage or a program or AI to do that, or if I have to do it all by myself.
Those /* */ you speak of are simply comments. They don't have any technical meaning but you can use them to for example label different sections in your file or "comment out" sections or whatever else you might to use comments for.
Aside from that, I don't think I can give you any recommendations, it all depends on what you really want to achieve.
Oh yeah, English is not my first language so I forgot how they were named.
Would you recommend me putting comments on the majority of lines to know what they do? Or just like a general title like: “color text when hovering” and just leaving the code like that?
I don't think I would do that. I mean, I definitely wouldn't do that, but I don't think it's really all that useful to try to comment every line, because you are probably going to have a whole lot of cases where commenting a line tells nothing meaningful. I would rather comment high-level "sections" about what some part of your file is supposed to achieve and then some specific parts if their purpose isn't immediately obvious or it does some weird hackery that's seemingly nonsensical.