Estrutura HTML da página de sucesso:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pesquisa Culturama</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fjalla+One&family=Work+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/sucesso.css">
</head>
<body>
<header>
<img src="img/logo-culturama.png" alt="Logo Culturama">
</header>
<main>
<section>
<img src="img/check1-icon.png" alt="icone de check para confirmar sucesso">
<h1>Muito obrigado!</h1>
<p>Os dados foram enviados com sucesso.
<br>Agradecemos pela sua colaboração.</p>
<a href="index.html">Ok</a>
</section>
</main>
</body>
</html>
Estrutura css da página de sucesso
*{
padding: 0;
margin: 0;
}
body{
background-color: #ffffff;
font-family: "Work Sans", sans-serif;
}
header img{
display: block;
margin: 75px 0 0 360px;
width: 100px;
}
section img{
width: 80px;
display: block;
margin: 0 auto;
margin-top: 100px;
}
h1{
font-family: "Fjalla One", sans-serif;
text-align: center;
font-size: 40px;
}
p{
font-size: 20px;
text-align: center;
margin-top: 40px;
}
a{
color: #ffffff;
font-size: 20px;
text-decoration: none;
background-color: #22e954;
width: 85px;
height: 30px;
display: block;
text-align: center;
line-height: 30px;
border-radius: 10px;
margin: 30px auto;
}
a:hover{
background-color: green;
}