-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.64 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.64 KB
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>
<title>Order Summary</title>
</head>
<link rel="stylesheet" href="./style.css" />
<body>
<div class="container">
<div class="box">
<img src="img/images/illustration-hero.svg" alt="" />
<div class="content">
<h1>order Summary</h1>
<p>You can now listen to billions of songs,</p>
<p>audio books,and podcasts on any device</p>
<p>where you like!</p>
</div>
<div class="pricing">
<div class="music_note">
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48">
<g fill="none" fill-rule="evenodd">
<circle cx="24" cy="24" r="24" fill="#DFE6FB" />
<path
fill="#717FA6"
fill-rule="nonzero"
d="M32.574 15.198a.81.81 0 00-.646-.19L20.581 16.63a.81.81 0 00-.696.803V26.934a3.232 3.232 0 00-1.632-.44A3.257 3.257 0 0015 29.747 3.257 3.257 0 0018.253 33a3.257 3.257 0 003.253-3.253v-8.37l9.726-1.39v5.327a3.232 3.232 0 00-1.631-.441 3.257 3.257 0 00-3.254 3.253 3.257 3.257 0 003.254 3.253 3.257 3.257 0 003.253-3.253V15.81a.81.81 0 00-.28-.613z"
/>
</g>
</svg>
</div>
<div class="des">
<h2>Annual Plan</h2>
<p>$59.99/year</p>
</div>
<div class="change">
<a href="">Change </a>
</div>
</div>
<div class="action">
<button>Proceed to Payment</button>
</div>
<div class="cancel"><a href="/">Cancel Order</a></div>
</div>
</div>
</body>
</html>