I have been having a problem with a practice question. so you can see that in I have all the things right from HTML to CSS but the output is now showing in the right way. When I use the <br>
tag then the output show like this HTMl and CSS output image in the browser but when I don't use the <br>
tag the output is Another HTMl and CSS output image in the browser
h1 {
font-family: league spartan;
color: #ffa511;
text-align: center;
font-size: 55px;
font-weight: 900;
letter-spacing: 2px;
line-height: 1.5px;
text-decoration: teal double underline;
text-transform: uppercase;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Apna <br> College</h1>
</body>
</html>