-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
150 lines (121 loc) · 4.98 KB
/
cart.html
File metadata and controls
150 lines (121 loc) · 4.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<link href="http://fonts.cdnfonts.com/css/frosty" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/cart.css">
</head>
<body>
<audio id="happyAudio">
<source src="audio/party.mp3" type="audio/mpeg" >
</audio>
<audio id="cryAudio">
<source src="audio/preview.mp3" type="audio/mpeg">
</audio>
<header>
<nav>
<div>
<h1>Kids World</h1>
</div>
<div class="cloud" >
<div class="cloudElement"></div>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact us </a></li>
</ul>
</nav>
</header>
<main>
<h1 class="h11">CART</h1>
<!--nav>
<ul>
<li id="shooop">
<a href="shop.html">shop</a>
</li>
</ul>
</nav-->
<section class='background'>
</section>
<nav>
<u id="shopa">
<li id="shopb">
<a id="shopc" href="shop.html">Back to Shop</a>
</li>
</ul>
</nav>
<section id='table'>
<table id="cart-table">
<tr class="tr1">
<th class="th1">Products</th>
<th class="tr2">Price</th>
<th class="th3">Quantity</th>
</tr>
</table>
<input class="submit" value="Checkout" type="submit" id='total-price'>
</section>
<div class="form-style-5">
<form id="payForm">
<fieldset>
<legend> Customer Payment Data </legend>
<p id="formTotal"></p>
<label for="CustomerIDModal"><span class="number"></span> Customer ID & Phone Number </label>
<input type="number" id="CustomerIDModal" placeholder="Enter Customer ID *" required>
<input type="number" id="number" placeholder="Enter Phone number *" required><br><br>
<label for="CustomerIDModal"><span class="number"></span> Email & Adress</label>
<input type="email" id="email" placeholder="Your Email *" required>
<textarea id="location" placeholder="Enter your location" required></textarea>
</fieldset>
<fieldset>
<label for="CustomerIDModal"><span class="number"></span> Payment Options & Card Number</label>
<div class="row">
<div class="col-xs-12 col-md-4">
<div class="panel panel-default credit-card-box">
<div class="panel-heading display-table">
<div class="row display-tr">
<div class="display-td">
</div>
</div>
</div>
<select id="payment" name="field4">
<option value="visa">VISA</option>
<option value="Master Card">Master Card</option>
<option value="DISCOVER">DISCOVER</option>
<option value="AMERICAN EXPRESS">AMERICAN EXPRESS</option>
</select>
<input type="number" id="cardNumber" placeholder="Valid Card Number" autocomplete="cc-number" required>
<input type="tel" id="cardExpiry" class="form-control" name="cardExpiry"
placeholder="Enter Card Expiry " autocomplete="cc-exp" required />
<input type="tel" id="cardCVC" class="form-control" name="cardCVC" placeholder="Enter CV Code"
autocomplete="cc-csc" required />
<input type="text" id="couponCode" class="form-control" name="couponCode" placeholder="Enter Coupon Code">
</fieldset>
<input id="submitButton" type="submit" onclick=" submit1();setTimeout(changePage, 1)" value="Proceed" >
<button class='closebtn' onclick="pauseAudio()"><a class='btnclose' href="index.html">Close</a></button>
</form>
</div>
</main>
<footer>
<ul id="social">
<a href="https://www.twitter.com">
<img src="https://www.net-aware.org.uk/siteassets/images-and-icons/application-icons/app-icons-twitter.png?w=585&scale=down" alt="">
</a>
<a href="https://www.instagram.com">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="">
</a>
<a href="https://www.facebook.com/">
<img src="https://nveloop.com/wp-content/uploads/2021/02/instagram.jpg" alt="">
</a>
<ul id="contact">
<li>Phone number: +962 79 520 9793</li>
<li>Email: info@KidsWorld.com</li>
</ul>
</footer>
<script src="js/cart.js"></script>
</body>
</html>