-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (42 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Order summary card</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/container.css">
<link rel="stylesheet" href="./css/order-summary-components.css">
</head>
<body>
<main class="container">
<div class="container__order-summary-component">
<div><img class="order-summary-component__main-img" src="./images/illustration-hero.svg" alt=""></div>
<div class="--padding">
<h1 class="order-summary-component__main-title">Order Summary</h1>
<p class="order-summary-component__paragraph">
You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!
</p>
<div class="order-summary-component__plans">
<div class="order-summary-component__music-container">
<img class="order-summary-component__music-img" src="./images/icon-music.svg" alt="">
<div class="order-summary-component__plan-container">
<span class="order-summary-component__plan">Annual Plan</span>
<span class="order-summary-component__plan-price">$59.99/year</span>
</div>
</div>
<span class="order-summary-component__change-button">Change</span>
</div>
<button class="order-summary-component__payment-button">Proceed to Payment</button>
<button class="order-summary-component__cancel-button">Cancel Order</button>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.frontendmentor.io/profile/coelhoalexandre" target="_blank">Alexandre Coelho</a>.
</div>
</main>
</body>
</html>