how to link external css file in html code example
Example 1: how to link css to html
<link rel="stylesheet" href="styles.css">
Example 2: add stylesheet to html
<head>
<link rel="stylesheet" href="css/style.css" />
</head>
<head>
<style>
body {
background-color: YellowGreen;
}
h1 {
color: blue;
}
p {
color: red;
}
</style>
</head>
<h1 style="color: red; font-size: 30px">This is a heading</h1>
<p style="color: green; font-size: 18px">This is a paragraph.</p>
<div style="color: green; font-size: 18px">This is some text.</div>
Example 3: connext html file to css
<link rel="stylesheet" type="text/css" href="style.css">
Example 4: how to link css to html
<link rel="stylesheet" href="mystyle.css">
Example 5: how to write css in html
<p style="color: blue; font-size: 46px;">
Example 6: how do i link my css to my html
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen"/>