add style in html code example
Example 1: how to link css to html
<link rel="stylesheet" href="styles.css">
Example 2: connext html file to css
<link rel="stylesheet" type="text/css" href="style.css">
Example 3: how to link your css file to html
<head>
<link rel='stylesheet' href='style.css'>
</head>
Example 4: how to write css in html
<p style="color: blue; font-size: 46px;">
Example 5: how to add style to p tag in html
<h1 style="color:blue;">This is a Blue Heading</h1>
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style>
</head>
<body>
<h1>This is a
heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Example 6: html add style
<!-- add this line into the head tag -->
<link rel="stylesheet" type="text/css" href="yourstylesheetname.css">
<!-- remember to change the irl in href -->