-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcart.html
More file actions
107 lines (106 loc) · 5.65 KB
/
Copy pathcart.html
File metadata and controls
107 lines (106 loc) · 5.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SITE ICON -->
<link rel="icon" href="./images/logo/Gallery-icon.png" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./css/cart.css">
<!-- JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
<script src="./js/cart.js"></script>
<title>Frames</title>
</head>
<body>
<!-- Header -->
<div class="container-fluid header">
<!-- Logo -->
<div class="row">
<div class="col-md-9" id="logo">
<h5>Frames</h5>
</div>
<!-- Menu -->
<div class="col-md-3 menu">
<ul id="menu">
<li>About</li>
<li>Login</li>
<li>Signup</li>
</ul>
</div>
</div>
</div>
<!-- Body -->
<div class="container-fluid body">
<p id="heading">We’re almost done</p>
<!-- content -->
<div class="container content">
<div class="row">
<div class="col-md-7">
<form action="#" id="calculate">
<div class="container-fluid form">
<!-- Image and radio -->
<div class="row img-container">
<!-- First column -->
<div class="col-md-5" id="image">
<img src="./images/huddah2.png" alt="frame">
<p id="frame-amount"> <span id="total-frames">1</span> frame<span id="plural"></span> @ Kshs. <span id="price"></span></p>
</div>
<!-- Second column -->
<div class="col-md-7">
<p id="paragraph">Want customized interior design tips?</p>
<div class="radio-buttons">
<!-- Yes -->
<div class="radio form-group">
<label class="radio-label" id="yes">
<input class="form-control with-gap" type="radio" name="extra" value="yes" checked id="yes">
<span>Yes</span>
</label>
</div>
<!-- No -->
<div class="radio form-group">
<label class="radio-label" id="no">
<input class="form-control" type="radio" name="extra" value="no" id="medium">
<span>No</span>
</label>
</div>
<!-- select image -->
<div class="mb-3">
<label for="formFile" class="form-label">Upload an image of your preferred room(optional)</label>
<input type="file" id="formFile">
</div>
</div>
</div>
</div>
<!-- Calculate -->
<div class="row">
<div class="container calculate">
<p id="amount-heading">Amount</p>
<div class="row">
<div class="col-md-2">
<input type="number" name="amount" id="amount">
</div>
<div class="col-md-4">
<button class="btn btn-calculate">Calculate</button>
</div>
<div class="col-md-6">
<button class="btn btn-checkout">Checkout</button>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="col-md-5 quote-card">
<p>“Creativity is a highfalutin word for the work I have to do between now and Tuesday.” –Ray Kroc</p>
</div>
</div>
</div>
</div>
</body>
</html>