-
Notifications
You must be signed in to change notification settings - Fork 1
/
thank_donor.php
57 lines (52 loc) · 2.12 KB
/
thank_donor.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./images/5_1-removebg-preview.png" type="image/x-icon">
<title>Red Wings: Thank you</title>
<style>
.thanks{
background-color: #ffd2d9;
padding: 5rem;
margin:3rem;
border-radius: 10px;
}
h2{
text-align: center;
color: #0f0099;
}
span{
color:#af0000;
}
h4{
text-align: center;
color: #0f0099;
}
p{
text-align:center;
}
.btns{
display:flex;
justify-content: space-around;
}
</style>
</head>
<body>
<div class="thanks">
<h2><span>Thank You</span> for your interest in blood donation as a part of <span>Red Wings</span></h2><br>
<h4><span>||</span> Stay Happy <span>||</span> Stay Healthy <span>||</span></h4>
<p style="color:#0f0099;font-size:1.2rem;">See you soon<p>
<p style="color:#af0000;">-------Red Wings------</p>
</div>
<div class="btns">
<a href="userprofile.php" class="btn btn-primary">Visit profile</a>
<a href="index.php" class="btn btn-primary">Back to home</a>
</div>
</body>
</html>