[Web Development] - Need clarification on website content - | SheCodes

[Web Development] - Need clarification on website content

Request for assistance in adding 'about' on website

👩‍💻 Technical question

I would like to add about in my. Website

🤖 SheCodes Athena says:

Answered in 0.78 seconds

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.

More coding questions about Web Development

👩‍💻 Technical question

should I split my CSS, JS and HTML?

🤖 SheCodes Athena says:

Answered in 4.59 seconds

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.