-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (42 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
37
38
39
40
41
42
43
44
<!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" type="text/css" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Red+Hat+Display' rel='stylesheet'>
<title>Frontend Mentor | Order summary card</title>
</head>
<body>
<div class="card">
<div class="card-container">
<div class="img-card-container">
<img class="img-card" src="images/illustration-hero.svg">
</div class="lower-card">
<div></div>
<h2 class="title">Order Summary</h2>
<div class="description">
You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!
</div>
<div class="plans">
<img class="imgcard" src="images/icon-music.svg">
<div class="currentplan">Annual Plan
<br>
<div class="price">$59.99/year</div>
</div>
<button class="changeplan">Change</button>
</div>
<button class="paybutton">
Proceed to Payment
</button>
<br>
<button class="returnbutton">
Cancel Order
</button>
</div>
</div>
</div>
</body>
</html>