-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
181 lines (139 loc) · 3.59 KB
/
thanks.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
<link href='https://fonts.googleapis.com/css?family=Sofia' rel='stylesheet'>
<link href="http://fonts.cdnfonts.com/css/cavolini" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Submit</title>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding-top: 0%;
font-weight: 300;
overflow-y: scroll;
}
nav {
font-family: 'Poppins', sans-serif;
font-size: 28px;
text-align: center;
background-color: #040508;
align-items: center;
display: flex;
justify-content: space-between;
padding: 10px 50px 10px 50px;
overflow: hidden;
position: fixed;
width: 100%;
}
nav .logo {
color: rgb(211, 9, 9);
font-family: 'Sofia';
font-size: 28px;
text-align: center;
width: 100%;
}
@media (max-width: 1000px) {
nav {
padding-right: 20px;
padding-left: 0px;
}
section {
padding-top: 8%;
}
}
@media (max-width: 370px) {
nav .logo {
font-size: 24px;
}
}
html {
height: 100%;
}
.bg {
animation: slide 3s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, #020304 50%, rgb(153, 233, 173) 50%);
bottom: 0;
left: -50%;
opacity: .5;
position: fixed;
right: -50%;
top: 0;
z-index: -1;
}
.bg2 {
animation-direction: alternate-reverse;
animation-duration: 4s;
}
.bg3 {
animation-duration: 5s;
}
.content {
background-color: rgba(255, 255, 255, .8);
border-radius: .25em;
box-shadow: 0 0 .25em rgba(0, 0, 0, .25);
box-sizing: border-box;
left: 50%;
padding: 10vmin;
position: fixed;
text-align: center;
top: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-family: monospace;
}
@keyframes slide {
0% {
transform: translateX(-25%);
}
100% {
transform: translateX(25%);
}
}
h1 {
color: #0c0734;
}
section {
min-height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 0.7rem 0.7rem;
}
.container {
max-width: 480px;
min-height: 0.8px;
width: 90%;
padding: 5px;
border-radius: 8px;
margin-bottom: 10%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: auto;
text-align: center;
font-family: arial;
}
</style>
<body>
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<section>
<div class="container">
<a href="home.html">
<img src="images/thanks.jpg" alt="Thank You" style="width:100%; margin:auto;">
</a>
<h1>Form submitted sucessfully</h1>
<p>Click here to return to home page!</p>
</div>
</section>
<br><br><br><br><br>
</body>
</html>