+ 8
How to connect two languages such as HTML and JS or HTML and CSS while making of static web page...
4 odpowiedzi
+ 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!
+ 10
Thanks Janning⭐ . Now I know that an interactive web page is not necessarily dynamic if the interactivity is limited to the client side.
+ 2
HTML+CSS is a static website
Js determines the behavior
In Linking an external we use the
<a></a>tag
0
hello