-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
29 lines (25 loc) · 874 Bytes
/
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
<h1 class="text-center mb-4">Thank You!</h1>
<p class="text-center">Your dataset request has been submitted successfully. We will review it and get back to
you soon.</p>
<div class="text-center mt-4">
<a href="index.html" class="btn btn-primary">Back to Home</a>
</div>
</div>
<footer>
<p>
<a href="index.html">© 2024 Your Website Name. All rights reserved.</a>
</p>
</footer>
</body>
</html>