-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
80 lines (70 loc) · 2.27 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
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
<!-- Started by Samuel Fatodu -->
<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" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./asset/images/favicon-32x32.png"
/>
<link
rel="stylesheet"
href="https://fonts.google.com/specimen/Red+Hat+Display"
/>
<title>Group 4 Order Summary Task</title>
<link rel="stylesheet" href="./asset/css/style.css" />
</head>
<body>
<!-- done by Timothy Awogbuyi -->
<div class="order-summary-card">
<img
class="img-hero-top"
src="./asset/images/illustration-hero.svg"
alt=""
/>
<div class="content-down">
<span class="summary-text">
<!-- edited by Ariyibi Baseet -->
Order Summary
</span>
<!-- created by Ariyibi Baseet -->
<p class="summary">
You can now listen to millions of songs, audiobooks, and podcasts on
any device anywhere you like!
</p>
<div class="plan-container">
<img src="asset/images/icon-music.svg" alt="" />
<div class="plan">
<span class="annual-text"> Annual Plan </span>
<br />
<span> $59.99/year </span>
</div>
<!-- created by Ariyibi Baseet -->
<a href="#" class="change-link"> <strong>Change</strong></a>
</div>
<!-- ----------------------------------------------------------------------------------------- -->
<!-- Created by Dahud Yusuf Ishola -->
<button class="proceed-btn">
<a href="#" class="btn-link"> Proceed to Payment </a>
</button>
<span class="cancel-order">
<a href="#" class="cancel-link">Cancel Order </a>
</span>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://internship.sidehustle.ng/" target="_blank"
>Side Hustle internship</a
>. Coded by
<a
href="https://docs.google.com/spreadsheets/d/1ugLdVtUdQAE5WJ7PIBguFgEl3mXUoi98iZeJ8m2Zh0g/edit?usp=sharing"
target="_blank"
>Group 4 Frontend Track</a
>.
</div>
</body>
</html>