0
How can HTML be linked to CSS and JavaScript when coding
Html
2 Answers
+ 1
For adding a css file:
<link rel="stylesheet" type="text/css" href="filelocation">
For adding a script file:
<script src="filelocation"></script>
- 1
If the files are in the same folder as the HTML then their names suffice as sources in the HTML file etc.