-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.36 KB
/
index.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
<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">
<title>Order Summary Component</title>
<link rel="stylesheet" href="./styles.css">
<link rel="icon" type="image/x-icon" href="img/favicon.png">
</head>
<body>
<!-- this is a comment -->
<div class="card">
<div class="cardImage">
<img src="img/meal.jpg" alt="Burger and fries">
</div>
<div class="cardText">
<h2>Order Summary</h2>
<p>You can now order anything from Uber Eats, without ever having to worry about delivery fees again!</p>
</div>
<div class="cardPaymentPlan">
<ul>
<li class="planIcon"><img src="./img/deliveryicon.jpg" alt="Delivery icon"></li>
<li class="planDetails">Annual Plan<br><span>$129.99/year</span></li>
<li class="changePlan"><a href="">Change</a></li>
</ul>
</div>
<div class="cardButtons">
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"><button name="proceed" class="proceed">Proceed to Payment</button></a>
<br>
<a href="https://www.google.com"><button name="cancel" class="cancel">Cancel Order</button></a>
</div>
</div>
</body>
</html>