I am new and just trying to make sure I am doing this correctly before diving in further. For whatever reason my CSS stylesheet will not show up even though I have linked it into my html file. Here is the current code in both, and screenshots for where and how it is saved. Help?
CSS
.body {
font type: bold;
}
.h1 {
color: purple;
}
.p {
color: red;
}
HTML
<!DOCTYPE html>
<html>
<head>
<title>Nikita Schultz</title>
<meta charset="utf-8" />
<link href="/styles/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Nikita Schultz</h1>
<p>About Me</p>
</body>
</html>
CSS
.body {
font type: bold;
}
.h1 {
color: purple;
}
.p {
color: red;
}
HTML
<!DOCTYPE html>
<html>
<head>
<title>Nikita Schultz</title>
<meta charset="utf-8" />
<link href="/styles/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Nikita Schultz</h1>
<p>About Me</p>
</body>
</html>