-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor | Order Summary Card</title>
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/images/favicon-32x32.png" type="image/x-icon">
<!-- Stylesheet -->
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<main>
<article class="card">
<!-- Hero Image -->
<img src="./assets/images/illustration-hero.svg" alt="" class="card__image">
<div class="card__details">
<!-- Card Title -->
<h2 class="card__title">Order Summary</h2>
<!-- Card Description -->
<p class="card__description">You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!</p>
<div class="card__item">
<div class="icon__card__text">
<!-- Music Icon -->
<img src="./assets/images/icon-music.svg" alt="" class="card__icon">
<div class="card__text">
<!-- Plan Details -->
<h3 class="card__heading">Annual Plan</h3>
<p class="card__subheading">$59.99/year</p>
</div>
</div>
<!-- Change Plan Link -->
<a href="#" class="card__change">Change</a>
</div>
<!-- Proceed to Payment Button -->
<button class="card__button">Proceed to Payment</button>
<!-- Cancel Order Button -->
<button class="card__cancel">Cancel Order</button>
</div>
</article>
<div class="attribution">
<!-- Attribution Links -->
Challenge by <a href="https://www.frontendmentor.io/challenges/order-summary-component-QlPmajDUj" target="_blank"
rel="noopener noreferrer">Frontend Mentor</a>.
Coded by <a href="https://www.github.com/Mayen007">Mayen007</a>.
</div>
</main>
</body>
</html>