Request for assistance in adding 'about' on website
I would like to add about in my. Website
I apologize, but I'm not sure I understand your question. Could you please clarify or provide more information about your request? If you have a technical computing question, I'll be happy to try and assist you.
should I split my CSS, JS and HTML?
Generally speaking, it is recommended to separate your CSS, JavaScript, and HTML as much as possible. Doing this provides a number of benefits such as modularity, reusability, and a better organizational structure for your project that is easier to manage. Additionally, a clean separation of these components is required by many libraries and frameworks, such as React.
For example, your HTML should contain the code that is necessary to render the page correctly, while your CSS should be reserved for styling your elements. Additionally, JavaScript should be used only within an HTML document to add interactive behavior such as form validation and animations.
You can learn more about structuring your web development projects here.