The colors and background remain unchanged. In previous projects, everything ended up falling apart
Refreshing the page with F5 or CTRL + F5 does not make a difference. When using Open Live Server in VS Code, it initially shows the changes being applied but then they disappear. Here is my head:
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My blog</title>
<link rel="stylesheet" href="css/style.css">
<link href='https://unpkg.com/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="33515c4b5a505c5d4073011d021d07">[email protected]</a>/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="57353838232423253627176279647964">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3146565945710201011f1f060101">[email protected]</a>&display=swap" rel="stylesheet">
</head>
This is my body:
* {
font-family: "Comfortaa", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
html,
h1,
h2,
h3,
h4,
h5,
h6 {
color: #5c5959;
}
body {
background: #f6f6f6;
}
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="85e7eaeaf1f6f1f7e4f5c5b0abb6abb6">[email protected]</a>/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href='https://unpkg.com/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="83e1ecfbeae0ecedf0c3b1adb2adb7">[email protected]</a>/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a7c5c8c8d3d4d3d5c6d7e79289948994">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="2e5949465a6e1d1e1e0000191e1e">[email protected]</a>&display=swap" rel="stylesheet">
<header class="container-fluid">
<div class="container">
<div class="row">
<div class="col-4">
<h1>My site</h1>
</div>
<nav class="col-8">
<ul>
<li><i class='bx bxs-home'></i><a href="#">Home</a></li>
<li><i class='bx bxs-bowl-hot'></i><a href="#">Services</a></li>
<li>
<i class='bx bxs-user'></i><a href="#">Account</a>
<ul>
<li>
<a href="#">Admin Panel</a>
</li>
<li><a href="#">Logout</a></li>
</ul>
</li>
<li><i class='bx bxs-phone'></i><a href="#">About Us</a></li>
</ul>
</nav>
</div>
</div>
</header>