-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (34 loc) · 1.31 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
<!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="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;600;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Order summary card</title>
</head>
<body>
<div class="cc">
<img src="images/illustration-hero.svg" alt="pp" class="i1">
<h2>Order Summary</h2>
<p class="paragraph"> You can now listen to millions of songs, audiobooks, and podcasts on any
device anywhere you like!
</p>
<div class="container">
<div class="innerc1">
<img src="images/icon-music.svg" alt="alternative" class="i2">
<p class="p2"> Annual Plan<br>
<span style="color: hsl(224, 23%, 55%); font-family: 'Red Hat Display', sans-serif; font-size: 12px;"> $59.99/year</span>
</p>
</div>
<div>
<a href="" class="change">Change</a>
</div>
</div><br>
<button type="button" class="btn"> <a href="" class="proceed">Proceed to Payment</a>
</button><br><br>
<a class="cancel"> cancel order </a>
</div>
</body>
</html>