How to combine html css and javascript in one coding? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to combine html css and javascript in one coding?

I dont kniw how to combine.

19th Mar 2018, 12:00 PM
Dragon Ball Super
Dragon Ball Super - avatar
2 Answers
+ 6
<!Doctype html> <html> <head> <style> </style> <script> </script> </head> and so on..
19th Mar 2018, 1:29 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 5
To add Css code: <style> your code in css </style> To add JS code: <script> your code in JS </script> Note: Both of them put between the head tag, it is better..
19th Mar 2018, 12:08 PM
Baraa AB
Baraa AB - avatar