+ 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...
2 Réponses
+ 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
+ 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>