-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>For Export</title>
<link rel="stylesheet" href="public/css/bootstrap.min.css" />
<!-- <link rel="stylesheet" href="styles.css" /> -->
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md">
<div class="container-fluid"><a href="#" class="navbar-brand">FProject</a><button data-toggle="collapse"
data-target="#navcol-1" class="navbar-toggler"><span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav">
<li role="presentation" class="nav-item"><a href="#" class="nav-link active">Home</a></li>
<li role="presentation" class="nav-item"><a href="#" class="nav-link">News</a></li>
<li role="presentation" class="nav-item"><a href="#" class="nav-link">Gallery</a></li>
<li role="presentation" class="nav-item"><a href="#" class="nav-link">Blog</a></li>
<li class="dropdown">
<a data-toggle="dropdown" aria-expanded="false" href="#" class="dropdown-toggle nav-link dropdown-toggle">
Idols
</a>
<div role="menu" class="dropdown-menu">
<a role="presentation" href="#" class="dropdown-item">FirstItem</a>
<a role="presentation" href="#" class="dropdown-item">Second Item</a>
<a role="presentation" href="#" class="dropdown-item">Third Item</a>
<a role="presentation" href="#" class="dropdown-item">See all</a>
</div>
</li>
</ul>
<span class="ml-auto navbar-text">
<button class="btn btn-primary" type="button">Login</button>
</span>
</div>
</div>
</nav>
<script src="public/js/jquery.min.js"></script>
<script src="public/js/bootstrap.bundle.min.js"></script>
<script src="public/js/bootstrap.min.js"></script>
</body>
</html>