-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThank you.html
More file actions
132 lines (120 loc) · 3.34 KB
/
Copy pathThank you.html
File metadata and controls
132 lines (120 loc) · 3.34 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
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, sans-serif;
background:
linear-gradient(rgba(6,158,228,0.12), rgba(255,255,255,0.7)),
url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=1200&q=80') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
padding-bottom: 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
width:400px;
height:100px;
display:grid;
margin-left: auto;
margin-right: auto;
justify-content: center;
align-content: center;
background-color: #fff;
padding: 2rem;
text-align: center;
border-radius: 1rem;
/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-30px);}
to { opacity: 1; transform: translateY(0);}
}
p{
font: 2rem;
}
button {
padding: 1rem 2.5rem;
font-size: 1.2rem;
background: rgb(6,158,228);
color: #fff;
border: none;
border-radius: 2rem;
cursor: pointer;
box-shadow: 0 4px 24px rgba(235,89,95,0.15);
transition: transform 0.2s, box-shadow 0.2s;
}
button:hover {
transform: scale(1.08);
box-shadow: 0 8px 32px rgba(235,89,95,0.25);
}
/* add on */
.Link-1, .Link-2, .Link-3 {
position: fixed;
right: 25px;
z-index: 1000;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #09335e;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.Link-1 { bottom: 35rem; }
.Link-2 { bottom: 30rem; }
.Link-3 { bottom: 25rem; }
.Link-1 img, .Link-2 img, .Link-3 img {
width: 30px;
height: 30px;
}
@media (max-width: 700px) {
.Link-1, .Link-2, .Link-3 {
width: 36px;
height: 36px;
right: 10px;
}
.Link-1 { bottom: 12rem; }
.Link-2 { bottom: 8rem; }
.Link-3 { bottom: 4rem; }
.Link-1 img, .Link-2 img, .Link-3 img {
width: 18px;
height: 18px;
}
}
@media (max-width: 700px) {
.container {
width:100px;
height:200px;
background-color: #fff;
padding: 2rem 1.2rem;
}
p{
font-size: 1.6rem;
}
}
</style>
<title>Thank you</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container" style="background-color: #fff;" >
<p>Thank you!</span> </p>
<p style="width:200px;margin-top: -1rem;">We'll reach out shortly.</p>
</div>
<a href="https://wa.me/+919506423475" target="_blank" class="Link-3">
<img src="https://img.icons8.com/ios-filled/50/ffffff/whatsapp.png" alt="WhatsApp" >
</a>
</body>
</html>