-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarwash.html
142 lines (121 loc) · 4.67 KB
/
carwash.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> CareonCall Carwash </title>
<link rel="stylesheet" href="services.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="carwash.js"></script>
</head>
<body>
<!---------------------------------------------------------------------NAVIGATION BAR------------------------------------------------------------------------------------------------------------>
<div>
<ul class="navigationbar">
<h2><a href="index.html" class="homelink">Care<span>OnCall</span></a></h2>
<li><a href="login.html" class="logout">Logout</a></li>
<li><a href="index.html#getservices">Services</a></li>
<li><a href="index.html">Home</a></li>
</ul>
<div class="carwash">
<h1>CAR WASH</h1>
</div>
<div class="services">
<div class="our-services">
<img src="img/view-cool-motorcycle.avif" atl="Request" class="gallery" style="width:100%;">
<div class="home-container">
<h3>Motorbike - R80.00</h3>
</div>
</div>
<div class="our-services">
<img src="img/3d-car.avif" atl="deliverman" class="gallery" style="width:100%;" height="150">
<div class="home-container">
<h3>Sedan - R100.00</h3>
</div>
</div>
<div class="our-services">
<img src="img/view-3d-car.avif" atl="convenient" class="gallery" style="width:100%;">
<div class="home-container">
<h3>SUV - R180.00</h3>
</div>
</div>
<div class="our-services">
<img src="img/Mercedes-Benz-V-Class-Black-Crystal-Larte.webp" atl="5startserives" class="gallery" style="width:100%;">
<div class="home-container">
<h3>Minibus - R220.00</h3>
</div>
</div>
</div>
<form class="myform">
<table class="carwash-table">
<th>CART <hr><br></th>
<tr>
<th>Motorbike </th>
<th>
<select class="price" onchange="calcTotal()" id="bike">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</th>
</select>
</tr>
<tr>
<th>Sedan</th>
<th>
<select class="price" onchange="calcTotal()" id="sedan" >
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</th>
</select>
</tr>
<tr>
<th>SUV</th>
<th>
<select class="price" onchange="calcTotal()" id="suv">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</th>
</select>
</tr>
<tr>
<th>Minibus</th>
<th>
<select class="price" onchange="calcTotal()" id="minibus">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</th>
</select>
</tr>
</table>
<table class="total-table">
<tr>
<th><hr>TOTAL<hr></th>
<th>
<label>R</label>
<label id="totalCalc" class="totalCalc">0</label>
<label id="totalCalc" class="totalCalc">.00</label>
</th>
</tr>
</table>
<div class="checkout">
<a href="payment.html" class="button">Checkout</a>
</div>
</div>
</form>
</body>
</html>