-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav_2.php
47 lines (38 loc) · 1.64 KB
/
nav_2.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome |E-COMMERCE</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css_ec.css" />
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="row">
<div class="col-xs-12">
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.php"> E-COMMERCE </a>
<button type="button" class="navbar-toggle" data-toggle="collapse data-target="#mynav">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="mynav">
<ul class="navbar navbar-nav navbar-right">
<li><a href = "cart.php"><span class = "glyphicon glyphicon-shopping-cart"></span> Cart </a></li>
<li><a href = "setting.php"><span class = "glyphicon glyphicon-user"></span> Settings</a></li>
<li><a href = "logout_script.php"><span class = "glyphicon glyphicon-log-in"></span> Logout</a></li>
<
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>