+ 1
How to add css in html? Nd so javascript with html?
plz help me
2 odpowiedzi
+ 2
To add CSS in HTML you need put css code inside <style> </style> tags, for Javascript inside <script></script> tags. Put them at the beginning or at end of body tag.
I'ts good practise to separate CSS and Js from HTML file, by creating external css file and then link CSS file by using: <link rel="stylesheet" href="style.css">. Same thing with Javascript <script src="script.js"></script> Hope i answered your question
- 1
thank you so much