-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubmitted.html
More file actions
54 lines (49 loc) · 1.09 KB
/
Copy pathsubmitted.html
File metadata and controls
54 lines (49 loc) · 1.09 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Input Received</title>
<style>
/* CSS styles */
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
margin: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
font-size: 32px;
margin-bottom: 20px;
}
.success {
color: green;
font-size: 24px;
margin-top: 20px;
}
.link {
color: dodgerblue;
font-size: 18px;
margin-top: 20px;
}
.link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Input Received</h1>
<div class="success">
Your input was successfully received.
</div>
</div>
</body>
</html>