-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
71 lines (61 loc) · 2.43 KB
/
landing.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
<!DOCTYPE html>
<html>
<head>
<!--<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>-->
<title>Print Ur Paper</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="/public/css/home_style.css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ["Lato:100,300,400,700,900","Karla:regular","Cookie:regular"]
}
});
</script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openslidemenu()">
<!--Ignore it it's copy and paste XD-->
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#fff"
stroke-width="5"/>
<path d="M0,14 30,14" stroke="#fff"
stroke-width="5"/>
<path d="M0,23 30,23" stroke="#fff"
stroke-width="5"/>
</svg>
</a>
</span>
<ul class="navbar-nav">
<a href="#"><span id="foss">Foss</span><span id="mec">Mec</span></a>
</ul>
</nav>
<div id="side-menu" class="side-bar">
<a href="#" class="close-btn" onclick="closesidemenu()">×</a>
<a href="#"><span id="foss">Foss</span><span id="mec">Mec</span></a>
<a href="#">Sign Up/login</a>
<a href="#">How To Use</a>
<a href="#">Contact Us</a>
</div>
<!--Full Screen Page -->
<div id="printu">
<div id="Heading"><strong>MecPrint !</strong></div>
<div id="content">" Taking Printouts has never been this easy! Get Yourselves started by clicking below "</div>
<button class="waves-effect waves-light btn" onclick="window.location.href='/login.html'">Print</button>
</div>
<!--Javascript-->
<script>
function openslidemenu(){
document.getElementById("side-menu").style.width="250px";
}
function closesidemenu(){
document.getElementById("side-menu").style.width="0px";
}
</script>
</body>
</html>