-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectBits.html
57 lines (48 loc) · 1.67 KB
/
projectBits.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
<!DOCTYPE html>
<html>
<head>
<title>Projects</title>
<link rel="stylesheet" type="text/css" href="projectBits.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Chela+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gaegu" rel="stylesheet">
</head>
<body>
<div class="head">
<img src="images/2.png">
<a href="#">New Project</a>
<a href="#">View Projects</a>
<a href="#">Developer Team</a>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</div>
<div class="image"></div>
<div class="overlay"></div>
<div class="vision">
<h1>Vision</h1>
<p>The purpose of the site is very enormous. Description will be given later. For now its not printed but will be ready very soon.</p>
</div>
<div id="mySidenav" class="sidenav">
<a href="#" class="closebtn" onclick="closeNav()">×</a>
<a href="#">New Project</a>
<a href="#">View Project</a>
<a href="#">Developer Team</a>
</div>
<div class="footer">
<p>The purpose of the site is very enormous. Description will be given later. For now its not printed but will be ready very soon.</p>
<hr>
<h1>Copyright © 2018 inCUBE. All Rights Reserved</h1>
</div>
<script>
function openNav()
{
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav()
{
document.getElementById("mySidenav").style.width = "0";
}
</script>
</body>
</html>