-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou_page.php
39 lines (33 loc) · 937 Bytes
/
thankyou_page.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
<!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">
<title>Thank you</title>
<link rel="stylesheet" href="style.css">
<style>
* {
margin: 0;
padding: 0;
}
.container {
background-color: #fff3f3;
margin: 15% 31%;
padding: 12px 12px;
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1 class="display-3">Thank You!</h1>
<p class="lead"><strong>Mail will has been sent to the student regarding this.</strong></p>
<hr>
<p class="lead">
<a class="hero-btn" href="index.html" role="button">Continue to homepage</a>
</p>
</div>
</body>
</html>