So...as the tile says, I am having a bit of trouble linking my CSS file to my HTML file. I link it, but it wont do anything. Nohing that I do in my file will change or work.
Here is my HTML code:
<!DOCTYPE html>
<html lang=en_US>
<head>
<meta charset="UTF-8">
<meta name="author" content="©Isaac Guillen 2020">
<meta name="keywords" content="Christian, Discord, Christianity, server">
<meta http-equiv="refresh" content="30">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Christian discord server for christians who are looking to spread the word or people who are looking to expand their knowledge on Christianity">
<link rel="stylesheet" href="./CSS/style.css">
<title>Scripture Alone Official</title>
</head>
<body>
<div class="Title">
<h1 class="title-1">Welcome!</h1>
</div>
<section id="link-buttons">
<div class="button">
<a class="link-1" href="#">Home</a>
<a class="link-2" href="#">About</a>
<a class="link-3" href="#">contact</a>
<a class="link-4" href="#">Join!</a>
</div>
</section>
</body>
</html>
And just in case...this is my CSS file:
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
What am I doing wrong?