How to connect two languages such as HTML and JS or HTML and CSS while making of static web page... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

How to connect two languages such as HTML and JS or HTML and CSS while making of static web page...

27th Feb 2019, 6:44 AM
Shourya
Shourya - avatar
4 Answers
+ 11
A dynamic website is one that is generated by a server-side language. Because the industry terminology in this area can often be imprecise, this is often confused with websites that contain interactive aspects, where most of the heavy-lifting of the interactivity is supplied by the JavaScript. To connect separate CSS and JavaScript files, (in a static website) use: <link rel="stylesheet" type="text/css" href="TestStylesFile.css"> <script src="TestScriptFile.js"></script> in the head section of your HTML file. For additional context, please see: https://code.sololearn.com/W326FKwAKXtN/?ref=app I hope this help!
27th Feb 2019, 7:53 AM
Janningā­
Janningā­ - avatar
+ 10
Thanks Janningā­ . Now I know that an interactive web page is not necessarily dynamic if the interactivity is limited to the client side.
28th Feb 2019, 1:33 AM
Sonic
Sonic - avatar
+ 2
HTML+CSS is a static website Js determines the behavior In Linking an external we use the <a></a>tag
27th Feb 2019, 7:13 AM
Alpha
Alpha - avatar
0
hello
28th Feb 2019, 12:03 AM
ali rahmani
ali rahmani - avatar