Hello I was trying to add like a blue background to code below but I wasn’t sure on how to do it:
<html lang="en">
<head>
<title>Success Page</title>
<style>
h1 {
font-size: 2cm;
text-align: center;
}
p {
font-size: 1cm;
padding: 20px;
}
</style>
</head>
<div class="container">
<h1>Sucess Page</h1>
<p>Congratulations your registration was successful!!!</p>
<a href="index.html"><button class="btn btn--pill btn--green" type="submit">OK</button>
</a>
</div>
</body>
</html>`
I tried searching and asking some friends no one was that much of a help.