-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyuo.html
32 lines (30 loc) · 1014 Bytes
/
thankyuo.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
30
31
32
<!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 rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="president.html">Vote for President</a></li>
<li><a href="results.html">Voting Results</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<div class="container">
<h1>Thank You for Voting!</h1>
<p>Your vote has been successfully submitted.</p>
<p>Stay tuned for the election results!</p>
</div>
<script>
// Redirect back to the home page after 5 seconds
setTimeout(function() {
window.location.href = 'index.html';
}, 5000); // 5000 milliseconds = 5 seconds
</script>
</body>
</html>