Hi all sololearn partners I want to give me the answer of this question.................... How to link html css and js? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Hi all sololearn partners I want to give me the answer of this question.................... How to link html css and js?

give me please The answer thanks I wish you a good luck...

8th Jun 2018, 2:30 PM
Abdirizak Mohamoud
Abdirizak Mohamoud - avatar
2 Answers
+ 3
You connect CSS to your HTML document with the <link> tag, and you connected your JS scripts to your HTML with the <script> tag. https://www.w3schools.com/tags/tag_link.asp https://www.w3schools.com/tags/tag_script.asp
8th Jun 2018, 2:34 PM
Fata1 Err0r
Fata1 Err0r - avatar
+ 3
<!DOCTYPE html> <html> <head> <title>Page Title</title> <link rel=“stylesheet” href=“https//linkstuff”> </link> </head> <body> </body> <script src=https//linkstuff”> </script> </html>
8th Jun 2018, 5:33 PM
🐺Michael🐺
🐺Michael🐺 - avatar