I'm facing an issue where my CSS stylesheet and HTML files aren't linking properly.
Here is the code snippet from my HTML file:
<head>
<title>Website Sample</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="C:\Users\Sam\Desktop\web\style.css" />
</head>
This is the CSS code:
.section2 {
height: 3000px;
width: 100px;
background-color: yellow;
}