+ 2
How can you include a css file in an html doc.
I want to know how to include css file in an html document
3 Antworten
+ 5
<head>
<link rel="stylesheet" href="example.css">
</head>
https://www.sololearn.com/learn/CSS/1079/
+ 4
<style>
CSS goes here
</style>
+ 4
Ginfio, not Embedded, but External CSS(file.css).