I am in the process of creating a website for my jewelry business and it's my first time doing so. I'm facing an issue where the CSS styles are being applied to one page but not to the other, even though both HTML files have the same code linking the CSS file:
<link rel="stylesheet" href="shizoid.css">
.
You can check out the screenshots here: https://i.stack.imgur.com/q4uPL.jpg https://i.stack.imgur.com/R6DuQ.jpg
As shown in the images, the HTML contains the tag:
<h1>Extravagant, Unique, Handmade Jewelry and Crafts</h1>
,
and the corresponding CSS styling is:
h1 {
background-color: #a018ba;
border-radius: 15px;
font-family: Garamond;
font-size: 40px;
text-align: center;
margin-bottom: 0px;
}
The strange thing is that this styling works on one page but not on the other. It was working fine yesterday but now it's not. I've checked in both Firefox and Chrome on different computers but still can't figure out the issue. Any help would be greatly appreciated. :)