Its been a long time since I've screwed around with html/css and I'm trying to implement a couple sample buttons. Its running fine in jsfiddle and other code runners but when I try to run in through notepad++ it comes out as in html format rather than css
Take a look
body {
background-color: #9e9a75
}
.B1 {
background: #b5ad67;
background-image: -webkit-linear-gradient(top, #b5ad67, b5ad67);
background-image: -moz-linear-gradient(top, #b5ad67, b5ad67);
background-image: -ms-linear-gradient(top, #b5ad67, b5ad67);
background-image: -o-linear-gradient(top, #b5ad67, b5ad67);
background-image: linear-gradient(to bottom, #b5ad67, b5ad67);
-webkit-border-radius: 9;
-moz-border-radius: 9;
border-radius: 9px;
-webkit-box-shadow: 3px 3px 12px #666666;
-moz-box-shadow: 3px 3px 12px #666666;
box-shadow: 3px 3px 12px #666666;
font-family: Georgia;
color: #7a7448;
font-size: 20px;
padding: 20px 20px 20px 20px;
text-decoration: none;
}
.B1:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
<!DOCTYPE html?
<html>
<head>
<title>Big Bite Tackle</title>
<link rel="stylesheet" type="text/css" href="Styles.css">
</head>
<body>
</body>
<div>
<CENTER>
<a class="B1" href="http://www.google.com" <strong>Meet the man</a>
<a class="B1" href="http://www.google.com" <strong>Shop</a>
<a class="B1" href="http://www.google.com" <strong>Contact and Support</a>
</CENTER>
</div>
<center>
<img src="BBTTITLE.PNG">
</center>
This is what its coming out to be when I run it on my own https://gyazo.com/5639170d4b29d5c966427a4953482c8f