-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (44 loc) · 1.84 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
<!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/style.css">
</head>
<body>
<div class="purchase-container">
<div class="purchase-container__image">
<img src="images/illustration-hero.svg" alt="Person dacing to the music" class="image__image">
</div>
<div class="purchase-container__text">
<h1 class="text__heading">Order Summary</h1>
<p class="text__paragraf">You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!</p>
</div>
<div class="purchase-container__plan">
<div class="plan__box">
<img src="images/icon-music.svg" alt="Music note icon" class="box__icon">
<div class="box__textContainer">
<h4 class="box__annual">Annual Plan</h4>
<p class="box__price">$59.99/year</p>
</div>
<a href="javascript:void(0);" class="box__change">Change</a>
</div>
</div>
<div class="purchase-container__order">
<button class="order__button">Proceed to Payment</button>
</div>
<div class="purchase-container__cancel">
<a href="javascript:void(0);" class="cancel__link">Cancel Order</a>
</div>
</div>
<div class="attribution">
<p class="attribution__text">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/wiksien">Wiktor Sienkiewicz</a>.
</p>
</div>
</body>
</html>