0
How to add html and css in visual studio cod
2 Antworten
0
you link them together in the html file. each is its own separate file.
include css files with the link tag: <link rel=“stylesheet” href=“path/to/file.css”>
use the script tag to include javascript: <script type=“text/javascript” src=“path/to/file.js”></script>
0
Tnx bro