You need two files:
index.htmlstyle.cssAdd this line inside the <head> section of your HTML file:
<link rel="stylesheet" href="style.css">
Open style.css and add styles.
body {
background-color: lightblue;
font-family: Arial;
}
h1 {
color: darkblue;
}
Save both files in the same folder, then open
index.html in your browser.
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome!</h1>
<p>This page uses CSS.</p>
</body>
</html>
body {
background-color: lightgray;
}
h1 {
color: green;
}
p {
font-size: 20px;
}