-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (54 loc) · 2.83 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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Flexbox Navigation</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<header>
<div class="logo">
<a href=''>Gig Scene</a>
<a href='#' class="menu">Menu</a>
</div>
<div class="nav-wrap">
<div class="top-nav">
<p>Music Billboard for serious music lovers</p>
<ul>
<li><a href="">Login</a></li>
<li><a href="">Signup</a></li>
</ul>
</div>
<nav class="prim-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Gigs</a></li>
<li><a href="#">Venues</a></li>
<li><a href="#">Reviews</a></li>
<li><a href="#">Interviews</a>
<li><a href="#">News</a></li>
<li class="social"><a href="#"><i class="fa fa-facebook"></i></a></li>
<li class="social"><a href="#"><i class="fa fa-twitter"></i></a></li>
<li class="social"><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</nav>
</div>
</header>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.4.min.js"><\/script>')</script>
<script src="js/menu.js"></script>
</body>
</html>