how to attach html, css and javascript. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to attach html, css and javascript.

hey mates I'm in big problem can anybody please tell me how to attach html, css and javascript file in on atom help me as soon as possible.

8th Oct 2020, 9:52 AM
Abdul Quadir
Abdul Quadir - avatar
3 Answers
+ 2
you can either do what 🎃#H P 22™🎃 says, or you can make separate files for css and js (which i prefer) Suppose your directory looks like this: - index.html - style.css - main.js In html file, inside head tag write this: <link rel="stylesheet" href="style.css" /> And to link the javascript file, go the ending </body> tag and before it, just write this: <script src="main.js"></script>
8th Oct 2020, 11:07 AM
maf
maf - avatar
+ 1
In your project folder, create these folders: CSS Script In the CSS folder. Create a file named. main.css In the Script folder. Create a file named. script.js In your HTML document add this. <head> <link href="main.css" rel="stylesheet"> <script src=“script.js”></script> </head>
8th Oct 2020, 11:10 AM
Chris Coder
Chris Coder - avatar
+ 1
🎃#H P 22™🎃 yeah i was just telling him both ways.
8th Oct 2020, 11:32 AM
maf
maf - avatar