-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclub.html
84 lines (71 loc) · 1.8 KB
/
club.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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Under Construction" />
<meta name="keywords" content="Under Construction, Website, Development" />
<meta name="author" content="Your Name" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Under Construction</title>
<link rel="icon" type="image/png" href="https://ee.iith.ac.in/images/favicon.png" />
<style>
body {
font-family: sans-serif;
text-align: center;
margin: 100px auto;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 40px;
}
img {
width: 200px;
height: auto;
}
.back-button {
margin-top: 20px;
padding: 10px 20px;
background-color: #f44336;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #d32f2f;
}
.back-button:active {
background-color: #b71c1c;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
</style>
</head>
<body>
<img src="https://ee.iith.ac.in/images/iith.png" alt="IITH Logo">
<h1>Under Construction</h1>
<p>We apologize for the inconvenience. This page is currently under construction.</p>
<p>Please check back later for updates.</p>
<button class="back-button animated" onclick="goBack()">Go Back</button>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>