-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.65 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.65 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Off Canvas | Cuttarug</title>
<meta name="description" content="Off canvas navigation ">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height">
<meta name="format-detection" content="telephone=no" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
</head>
<body>
<div id="nav-container" class="active">
<div id="nav">
<ul>
<li>Nav 1</li>
<li>Nav 2</li>
<li>Nav 3</li>
</ul>
</div>
</div>
<div id="main-container">
<div id="main">
<header>
<svg id="menu" width="20" height="21" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0, 5) scale(1.1)">
<rect fill="#303030" stroke="#000000" stroke-width="0" stroke-miterlimit="1" width="13.03125" height="3.03125" x="0" y="0"/>
<rect fill="#303030" stroke="#000000" stroke-width="0" stroke-miterlimit="1" width="13.03125" height="3.03125" x="0" y="5"/>
<rect fill="#303030" stroke="#000000" stroke-width="0" stroke-miterlimit="1" width="13.03125" height="3.03125" x="0" y="10"/>
</g>
</svg>
<h1>Main</h1>
</header>
</div>
</div>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/jquery.transit.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>