-
Notifications
You must be signed in to change notification settings - Fork 0
/
send.html
201 lines (184 loc) · 6.23 KB
/
send.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<title>Message Send Successfully</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="img/favicon.png">
<!--===============================================================================================-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="style.css">
<!--===============================================================================================-->
<style>
body {
overflow-x: hidden;
}
.container {
width: 500px;
position: absolute;
margin-left: 26%;
margin-top: 5rem;
padding: 25px;
}
.proPic {
border-radius: 50%;
width: 200px;
margin-left: 35%;
}
.btn {
margin-left: 35%;
margin-top: 20px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 400px) {
body {
overflow-y: hidden;
}
.container {
width: 100%;
margin-left: auto;
margin-top: 8rem;
}
.proPic {
width: 200px;
margin-left: 20%;
}
.btn {
margin-left: 20%;
margin-top: 50px;
}
h1 {
font-size: 20px;
}
h3 {
font-size: 16px;
}
}
@media only screen and (min-width: 400px) {
body {
overflow-y: hidden;
}
.container {
width: 100%;
margin-left: auto;
margin-top: 8rem;
}
.proPic {
width: 200px;
margin-left: 35%;
}
.btn {
margin-left: 35%;
margin-top: 50px;
}
h1 {
font-size: 20px;
margin-left: 15%;
}
h3 {
font-size: 16px;
margin-left: 15%;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.container {
width: 50%;
margin-left: 20%;
margin-top: 5rem;
}
.proPic {
width: 200px;
margin-left: 16%;
}
.btn {
margin-left: 12%;
margin-top: 20px;
}
h1 {
font-size: 25px;
}
h3 {
font-size: 16px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.container {
width: 50%;
margin-left: 20%;
margin-top: 5rem;
}
.proPic {
width: 200px;
margin-left: 23%;
}
.btn {
margin-left: 23%;
margin-top: 20px;
}
h1 {
font-size: 24px
}
h3 {
font-size: 16px;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.container {
width: 50%;
margin-left: 20%;
margin-top: 5rem;
}
.proPic {
width: 200px;
margin-left: 30%;
}
.btn {
margin-left: 28%;
margin-top: 20px;
}
h1 {
font-size: 30px;
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.container {
margin-left: 22%;
margin-top: 5rem;
}
.proPic {
width: 200px;
margin-left: 40%;
}
.btn {
margin-left: 40%;
margin-top: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<img src="img/profile.jpg" class="proPic">
<h1>Thanks for Contacting Me</h1>
<h3>I will reply to your email soon....</h3>
<button onclick="window.location.href='https://github.com/samithawijesekara/'" style="border-radius: 50px; padding: 10px 20px 10px 20px;" class="btn btn-dark"><i style="padding: 5px;" class="fab fa-github"></i> Go back to GItHub</button>
</div>
<!--===============================================================================================-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!--===============================================================================================-->
<script src="script.js"></script>
<!--===============================================================================================-->
</body>
</html>