-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 2.01 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 2.01 KB
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
49
50
51
52
53
54
55
<?php
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ShopLite</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<!-- <div class="modal" id="#myModal">
<div class="inner">
<h2>Do you want to confirm the order</h2>
<p><strong>Note : </strong>The order will be non-cancellable after this step.</p>
<button>Submit</button>
</div>
</div> -->
<div class="navbar">
<a href="">ShopLite </a>
</div>
<div class="container">
<div class="card" id="card1"> <!-- Requires ID -->
<div class="product">
<input type="text" onkeyup="showPrice(this.value);" placeholder="Enter Product Code" name="1"> <!-- Requires NAME -->
</div>
<div class="remove" onclick="rem_product('1')";>
<a href="#"><span><i class="ion ion-close-round"></i></span></a>
</div>
<div class="pname"></div>
<div class="price" id="pr1"></div>
</div>
<div class="add" onclick="add_product();" id="add_btn">
<a href="#"><span><i class="ion ion-plus"></i></span></a>
</div>
<div class="card" id="total">
<h2>Your Total Bill :</h2>
<h2 id="tot"></h2>
</div>
<form action="">
<input type="hidden" id="counter">
<input type="submit" id="submit_btn" value="Add to Cart" name="submit" onclick="send_count();showModal();">
</form>
</div>
</body>
</html>