My original HTML Code looked something like this
<!DOCTYPE html>
<head>
<title> MDMX Music </title>
<link rel="stylesheet" href="css\style.css">
</head>
</body>
<div class = "container">
<h1> MY HEADING </h1>
<p>Website text</p>
</div>
And I changed it to
<!DOCTYPE html>
<head>
<title> MDMX Music </title>
<link rel="stylesheet" href="css\style.css">
</head>
</body>
<div class = "container">
<h1><a href = "index.html"> MY HEADING </a></h1>
<p>Website text</p>
</div>
The CSS Looks like this:
h1 {
font-family: "Courier New";
font-size: 600%;
color: darkorange;
text-transform: uppercase;
text-align: center;
margin: 0;
display: block;
text-align: center;
margin: 0;
display: block;
-webkit-mask-image: url(../images/rough-texture.png);
}
Whereas before I was getting a nice big orange textured heading, now I am getting a tiny area with a few white dots instead.
I can't seem to figure out what could be causing this.