Skip to content

Commit

Permalink
Merge pull request #1008 from SaiTejaswaniBikkasani/enhance-thankyou.…
Browse files Browse the repository at this point in the history
…html-page

feat: Enhance Visual Appeal of thankyou.html Page
  • Loading branch information
apu52 authored Jul 14, 2024
2 parents a971b05 + 9ecb373 commit 7f03870
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
29 changes: 29 additions & 0 deletions thankyou.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(to right, #8e2de2, #4a00e0);
font-family: 'Roboto', sans-serif;
}

.container {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 90%;
}

.container:hover {
transform: scale(1.05);
transition: transform 0.3s ease;
}

h2 {
color: #333;
font-family: Arial, sans-serif;
}
5 changes: 4 additions & 1 deletion thankyou.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thankyou</title>
<link rel="stylesheet" href="thankyou.css">
</head>
<body>
<h2>Thankyou for the valuable feedback!</h2>
<div class="container">
<h2>Thank you for the valuable feedback! <span>&#128077;</span></h2>
</div>
</body>
</html>

0 comments on commit 7f03870

Please sign in to comment.