-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (56 loc) · 1.26 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>RPI Campus Connect</title>
<style>
body {
background-color: #f2f2f2;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
text-align: center;
margin-top: 50px;
font-size: 36px;
color: #333;
letter-spacing: 2px;
}
.cog-container {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}
.cog {
width: 100px;
height: 100px;
animation: rotate 10s linear infinite;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
.message {
text-align: center;
margin-top: 30px;
font-size: 18px;
color: #555;
line-height: 1.5;
}
</style>
<link rel="shortcut icon" type="image/x-icon" href="./image/logo.jpg" >
</head>
<body>
<h1>RPI Campus Connect</h1>
<div class="cog-container">
<img class="cog" src="./image/cog.png" alt="Wheel Cog">
</div>
<div class="message">
<p>We are excited to announce that RPI Campus Connect is coming soon!</p>
<p>Stay tuned for the release and we hope you'll love it!</p>
</div>
<script>
// You can add additional JavaScript code here if needed
</script>
</body>
</html>