-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgoodbye.html
More file actions
56 lines (44 loc) · 1.8 KB
/
goodbye.html
File metadata and controls
56 lines (44 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Farewell!</title>
<!--Google Fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Muli|Roboto&display=swap">
<!--Meyerweb CSS Reset file-->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!--Bootstrap CSS file-->
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!--Team CSS file-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<p class="h1 text-white text-center">Rendez-vous</p>
<p class="h4 text-white text-center font-weight-light font-italic">Your Easy Date Night Planner!</p>
</header>
<div class="row" id="spacer">
<p></p>
</div>
<div class="container">
<div class="jumbotron">
<h1 class="display-4 text-primary">Thanks for visiting!</h1>
<hr class="my-4">
<h4 class="font-italic text-muted">Your database record has been deleted.</h4>
<br>
<button class="btn btn-success btn-lg"><a href="https://github.com/PLKGIT/g2skywalker">Goodbye</a></button>
</div>
</div>
<footer>
<h6>© Copyright 2020 | <a href="about.html">Development Team</a></h6>
</footer>
<!--jQuery JS files-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" type="text/javascript"></script>
<!--Bootstrap JS file-->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
type="text/javascript"></script>
</body>
</html>