-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.html
38 lines (35 loc) · 863 Bytes
/
result.html
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
<!DOCTYPE html>
<html>
<head>
<title>Form Submitted</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
h1 {
color: #333;
text-align: center;
}
p {
color: #666;
text-align: center;
margin-bottom: 30px;
}
</style>
</head>
<body>
<div class="container">
<h1>Form Submitted</h1>
<p>Your form has been successfully submitted. Thank you!</p>
</div>
</body>
</html>