-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="css/main.css">
<title>Frontend Mentor | Order summary card</title>
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<main>
<header class="hero-section">
<img src="images/illustration-hero.svg" class="hero-img" alt="">
</header>
<section class="order-section">
<h1 class="title">Order Summary</h1>
<p class="subtext"> You can now listen to millions of songs, audiobooks, and podcasts on any device anywhere you like!</p>
</section>
<section class="plan-section">
<h2>1</h2>
<div class="icon-and-subtext">
<img src="images/icon-music.svg" alt="" class="plan-img">
<div class="price">
<p class="bold-text">Annual Plan</p>
<p class="normal-text">$59.99/year</p>
</div>
</div>
<div class="change-link">
<a href="#">Change</a>
</div>
</section>
<section class="payment-section">
<h2>1</h2>
<a href="#" class="proceed-btn">Proceed to Payment</a>
<a href="#" class="cancel-btn">Cancel Order</a>
</section>
</main>
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->
</body>
</html>