-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.03 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, intial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>E-Book Store</title>
</head>
<body>
<!--Navigation-->
<div class="header">
Suyogon
</div>
<nav class="main-nav">
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="cat.php" >Catalog</a></li>
<li><a href="profile.php" >Profile</a></li>
<li><a href="cart.php" >Cart</a></li>
<li><a href="login.html" >Login</a></li>
<li><a href="reg.html" >Register</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</nav>
<div class="content">
<img src="images\back.png" width="100%" height="400px">
</div>
<footer class="footer">
<div class="lfloat">© VJTI, Matunga</div>
<div class="rfloat">Made in India</div>
</footer>
</body>
</html>