0
how to link an html file with external css file to another page on website ? is it possible ?
2 Réponses
0
Yeah you just have to put the link tag with your css file on whichever html page you want
0
In head tag
<link rel="stylesheet" href="style.css" >
Where style.css is your css file and both html and css are in same folder.