-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart.htm
45 lines (42 loc) · 1.83 KB
/
Cart.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Jwellery Shopping Website</title>
<link href="WT_P10.css" rel="stylesheet">
<script src="WT_P10.js"></script>
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
</head>
<body>
<header>
<h1>Chandrajeet Jewellers</h1>
<a href="#cartcontainer"><button id="cartbutton" class="cart" onclick="showCart()"><span>0</span> Items in cart</button></a>
<nav>
<ul>
<li><a href="WT_P10.htm">Home</a></li>
<li><a href="#container">Products</a></li>
<li><a href="#footer">Contact Us</a></li>
<li><a href="WT_P10_Login.htm">Logout</a></li>
</ul>
</nav>
</header>
<div id="Cart">
</div>
<footer>
<div class="contact" id="footer">
<h4>Contact Us,</h4>
<p>Shubh Ranpara , CSE Department,Nirma University</p>
<p>Email: <a href="mailto:21bce248@nirmauni.ac.in">21bce248@nirmauni.ac.in</a></p>
<p>Phone: +91 999999999</p>
<p>Address : S.G. Highway, Ahmedabad, 381 481</p>
<ul>
<li><a href="#"><i class="ion-social-instagram"></i></a></li>
<li><a href="#"><i class="ion-social-facebook"></i></a></li>
<li><a href="#"><i class="ion-social-twitter"></i></a></li>
<!-- <li><a href="#"><i class="ion-social-rss"></i></a></li> -->
<li><a href="#"><i class="ion-social-googleplus"></i></a></li>
<li><a href="#"><i class="ion-social-youtube"></i></a></li>
</ul>
</div>
</footer>
</body>
</html>