forked from srsandy/hwhookup.in
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
executable file
·110 lines (78 loc) · 1.96 KB
/
thanks.html
File metadata and controls
executable file
·110 lines (78 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<title>
Thank You
</title>
<link rel="stylesheet" type="text/css" href="css/ionicons.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<style type="text/css">
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,html {
color: #555;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
header {
margin: 0 100px;
}
h2 {
font-size: 100px;
text-align: center;
text-transform: uppercase;
}
h1 {
font-size: 148%
font-family: 'Montserrat', sans-serif;
font-weight: 700;
word-spacing: 2px;
margin-left: 40px;
margin-bottom: 10px;
letter-spacing: 1px;
}
h3{
font-size: 80%;
text-align: left;
font-weight: 400;
padding-left: 130px;
}
.long-copy {
text-align: center;
margin-bottom: 20px;
}
.sec {
max-width: 1140;
margin-left: 20px auto 0px auto;
}
.io-mail {
font-size: 30px;
float: left;
margin-top: 5px;
margin-left: 70px;
}
section {
margin: 50px 300px 0px 300px;
}
</style>
</head>
<body>
<header>
<h1>hwhookup.in</h1>
<hr>
</header>
<section>
<h2>Thank you.</h2>
<p class="long-copy">Your order was completed successfully.</p>
<i class="ion-email-unread io-mail"></i>
<h3>An email including the details about your order has been sent <br>to the email address provided. Please read the email carefully.<br>
Mention your registration number in your notes.</h3>
</section>
</body>
</html>