-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (42 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
<![endif]-->
<title>Tabs to Dropdown</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:500">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link rel="stylesheet" href="css/page.css">
<link rel="stylesheet" href="css/tabs-to-dropdown.css">
</head>
<body>
<header class="tabs-to-dropdown">
<nav class="tab-bar">
<ul>
<li class="active"><a href="#"><span class="fa fa-home"></span></a></li>
<li><a href="#0">Products</a></li>
<li><a href="#0">Library</a></li>
<li><a href="#0">Strategy for succes!</a></li>
<li><a href="#0">Case studies</a></li>
<li><a href="#0">Join us</a></li>
<li><a href="#0">Contact</a></li>
</ul>
</nav>
<div class="dropdown">
<button class="dropdown-toggle">...<span class="fa fa-angle-down"></span></button>
<ul></ul>
</div>
</header>
<main>
<h2><small>Fully responsive</small> Tabs to Dropdown!</h2>
</main>
<!-- Scripts -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/tabs-to-dropdown.js"></script>
</body>
</html>