Answers for "how to load external css file in html"

122

how to link css to html

<link rel="stylesheet" href="styles.css">
Posted by: Guest on November-28-2019
2

how to add a css file in html

<!DOCTYPE html>
<html>
<head>

  <link rel="stylesheet" href="styles.css">

</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on July-13-2020
0

adding external css to html

adding external css to html
Posted by: Guest on August-20-2021

Code answers related to "how to load external css file in html"

Browse Popular Code Answers by Language