0
How do i like files link local files
soo lets say we have a file called meme saved in documents for reasons, inside we have the html file ,the css file and the js file seperate how do i like the css file to the html page i just can't get it to work the closes i have ever got is the css background file to load, any one have any tips on u get yours to load up ,btw the css file's name is will.css and the js file's name dye.js
2 odpowiedzi
+ 4
Just put <script type="text/javascript" src="dye.js"></script> and <style type="text/css" src="will.css"></style> to your HTML file.
+ 3
<script src="dye.js"></script>
<link href="will.css" type="text/css">