-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (52 loc) · 1.83 KB
/
index.html
File metadata and controls
69 lines (52 loc) · 1.83 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Code Guide - for developing durable HTML, CSS and SASS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Code Guide is for developing durable and sustainable HTML, CSS and SASS" />
<meta name="keywords" content="code guide, web development, web dev, developers, html, css, sass" />
<link rel="stylesheet" href="app.css" type="text/css" media="screen" title="no title" />
<!--[if lt IE 9]>
<script src="html5.js"></script>
<![endif]-->
</head>
<body class="mob-menu">
<header id="header" class="header">
<div class="wrap">
<div class="row">
<div class="full-col">
<div class="navbar-header">
<button class="mob-menu-trigger btn" type="button">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<nav id="nav" class="nav-holder mob-menu-nav mob-menu-vertical mob-menu-left">
<ul class="nav">
<li><a href="#" title="HTML">HTML</a></li>
<li><a href="#" title="CSS">CSS</a></li>
<li><a href="#" title="SASS">SASS</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<footer id="footer" class="footer">
<div class="wrap">
<div class="row">
<div class="full-col">
<div class="copyright">
<p>Copyright @ 2015 MV Develop. All rights reserved.</p>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="easing.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>