-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.html
29 lines (27 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Maitreyee's Portfolio</title>
<link href="style.css" rel="stylesheet">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body style="background-color: lightseagreen;" onload="sent()">
<div id="centerall">
<p style="color: lightyellow; font-size: 18px; font-family: Arial, Helvetica, sans-serif; text-align:center;"> <span style="font-size: 30px;"><b> Thank You !! </b></span><br><br> If I do not reach you again on the mail id provided by you,<br> please excuse me and mail me on my Gmail Id<br><br> <span style="color: black;"><b> <i> [email protected] </i></b></span> <br><br>
<a href="https://maitreyeepaliwal.github.io/MaitreyeePaliwal/" class="buttonglow" style=" display:inline-block; text-decoration: none ;margin:0 auto;"> Back to Portfolio? </a></p>
</div>
</body>
<script>
function sent(){
swal({
title: "Sent!",
text: "I've recieved your msg,..Replying Soon!!",
icon: "success",
button: "Okay!!",
});
}
</script>
</html>