In the directory structure below, I have the following files:
mywebsite/
├── css/
│ ├── style.css
│
├── index.html
This is my HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css" type="text/css">
<title>Home </title>
</head>
However, when I try to run the site on localhost using XAMPP, the CSS is not being applied. I've always followed the same process before, so I'm not sure why it's not working this time.
Just for your information: Apache in XAMPP is running properly.
Can anyone see where I might be going wrong?