+ 5
How can i add css and JavaScript file externally in same html page?
2 Answers
+ 9
<link href="css" rel="stylesheet" type="text/css">
<script src="js" type="text/javascript"></script>
+ 1
JS Files (inside <body>)
<script src="path"></script>
CSS Files (inside <head>)
<link rel="stylesheet" href="path">