-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (32 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
<!DOCTYPE html>
<html>
<head>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="/fonts/gotham.otf" rel="stylesheet" type="otf">
<link rel="stylesheet" href="style.css">
<script src="/js/navbar.js"></script>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<header class="w3-container w3-xlarge w3-padding-24 w3-black w3-left-align">
<a href="/index.html" class="w3-bar-item">
<img src="img/logo.svg" class="w3-image w3-animate-left w3-padding-12" id="logo" alt="logo"></a>
<a class="w3-button w3-hide-large w3-right w3-xlarge w3-hover-black w3-animate-right" id="hamburger" style="max-width:60px" href="javascript:void(0);" onclick="openNav(this)">
<i class="fa fa-bars"></i>
</a>
</header>
</div>
<!-- The App Section -->
<div class="w3-padding-64 w3-white">
<div class="w3-center">
<h1 class="w3-xlarge w3-padding-64 w3-animate-top">Site under contstruction</h1>
<img src="img/wip.png" style="width:60%; max-width: 400px;">
</div>
</div>
</body>
</html>