-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.php
44 lines (40 loc) · 1.36 KB
/
cart.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
<?php
include 'dbconnection.php';?>
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<link rel="stylesheet" href="css/style0.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<title>Click-Kart</title>
</head>
<body>
<?php include 'menu.php';?>
<div class="content main">
<?php include 'cart-body.php'; ?>
</div>
<?php include 'slider.preview.php'; ?>
<?php include 'footer.php';?>
<!--Scripts-->
<script type="text/javascript">
$(document).ready(function() {
$().UItoTop({
easingType: 'easeOutQuart'
});
});
</script>
<a href="#" id="toTop"> </a>
<script type="text/javascript" src="js/jquery-1.9.0.min.js"></script>
<script src="js/jquery.openCarousel.js" type="text/javascript"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/navigation.js"></script>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/jquery.mobile.custom.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>