-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (45 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<title>IEEE NTU Student Branch</title>
<style type="text/css">
body {
background-color: #1ab3ff;
font-family: 'Open Sans', sans-serif;
}
.container {
margin: 70px auto;
text-align: center;
}
h1 {
letter-spacing: -1px;
font-size: 120px;
font-weight: 300;
margin-top: 60px;
margin-bottom: 80px;
color: #ffffff;
}
#hackathon,
#hackathon a {
color: #ffffff;
text-decoration: none;
font-weight: 300;
font-size: 40px;
padding-bottom: 3px;
}
#hackathon a:hover {
border-bottom: 1px solid #ffffff;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" height="110px">
<h1>Coming Soon</h1>
<div id="hackathon">
<a href="http://intuition.ieeentu.com/">iNTUition 2020</a> || <a href="http://intuitionv3.ieeentu.com/">iNTUition 3.0</a>
</div>
</div>
</body>
</html>