Thank you page with simple HTML and CSS
A simple Thank You page using HTML and CSS
Screenshot: -
Code: -
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.top-banner{
background: #f0f8ff;
font-size: 25px;
padding: 3px 0px 3px 0px;
text-align: center;
font-weight: 500;
font-family: sans-serif;
}
.center-banner{
margin-top: 40px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 8px 0px 8px 0px;
font-family: sans-serif;
}
.app-table{
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="top-banner">
<p>Thanks for writing to us, we will get back to you.</p>
</div>
<div class="center-banner">
<table class="app-table">
<tr>
<td>You can also follow us on</td>
<td><a href="https://www.linkedin.com/company/" target="_blank"><img src="https://drive.google.com/xxx" height="30" width="30" title="Example" /></a></td>
<td>to stay updated on new requirements</td>
</tr>
</table>
</div>
</body>
</html>
Comments
Post a Comment