what is stylesheet in html code example
Example 1: how to link css to html
<link rel="stylesheet" href="styles.css">
Example 2: add stylesheet html
<link rel="stylesheet" type="text/css" href="style.css">
Example 3: add stylesheet to html
<!-- Linking External Style Sheets -->
<head>
<link rel="stylesheet" href="css/style.css" />
</head>
<!-- Embedded Style Sheets -->
<head>
<style>
body {
background-color: YellowGreen;
}
h1 {
color: blue;
}
p {
color: red;
}
</style>
</head>
<!-- Inline Styles -->
<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 4: stylesheet css
<style></style> or
<link rel="stylesheet" href="style.css">
Example 5: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>