-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.5 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
<!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="order-summary">
<img class="image-hero" src="./images/illustration-hero.svg" alt="illustration-hero">
<h2 class="summary-title">Order Summary</h2>
<p class="description">
You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!
</p>
<div class="summary">
<div class="price-box">
<img src="./images/icon-music.svg" alt="icon-music">
<div class="pricing">
<strong>Annual Plan</strong>
<h5 class="price">$59.99/year</h5>
</div>
</div>
<a href="#" class="alternate-link">Change</a>
</div>
<button class="proceed">Proceed to Payment</button>
<button class="cancel">Cancel Order</button>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/snipeart007" target="_blank">snipeart007</a>.
</div>
</body>
</html>