-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.34 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
<!DOCTYPE html>
<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">
<title>Order summary card</title>
</head><link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
</head>
<body>
<div class="container">
<div class="Card">
<img src="./images/illustration-hero.svg" class="hero">
<div class="text-container">
<h2 class="title">Order Summary</h2>
<p>You can now listen to millions ofsongs, <br>audiobooks,and podcasts on any device <br>anywhere you like !</p>
</div>
<div class="pnan-section">
<img src="./images/icon-music.svg">
<p>Annual plan <br><small>$59.99/year</small></p>
<a href="#">Change</a>
</div>
<div class="btn-primary">
<button type="submit" class="main-btn">Proceed to Payment</button>
<p class="order-cancel">Cancel Order</p>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://t.co/PhXYltGEZb">Nidhi Kumari</a>.
</div>
</div>
</div>
</body>
</html>