-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
40 lines (39 loc) · 1018 Bytes
/
thanks.html
File metadata and controls
40 lines (39 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submission Success</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.success-container {
text-align: center;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
}
h1 {
color: #4CAF50;
}
p {
margin-top: 20px;
color: #333333;
}
</style>
</head>
<body>
<div class="success-container">
<h1>Success!</h1>
<p>Your submission was successfully received.</p>
<a href="https://niyaz5.github.io/test">ok</a>
</div>
</body>
</html>