-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (50 loc) · 1.6 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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> Order Summary </title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
<style>
.three:hover {
color: hsl(224, 23%, 55%);
text-decoration: none;
}
.button:hover {
background: rgb(118, 108, 241);
}
.cancel:hover{
color:hsl(223, 47%, 23%);
font-weight:900;
}
</style>
</head>
<body>
<div class="div">
<div class="container">
<img class="hero" src="https://assets.codepen.io/11868974/illustration-hero.svg" alt="hero" />
<div class="order">
<h1>Order Summary</h1>
<p>You can now listen to millions of songs, audiobooks, and podcasts on any device anywhere you like!</p>
</div>
<div class="annual">
<img class="note" src="https://assets.codepen.io/11868974/icon-music.svg" alt="icon" />
<p class="one">Annual Plan</p>
<p class="two">$59.99/year</p>
<a class="three" href="#">Change</a>
</div>
<div class="button">
<a href="#" class="pay"><b>Proceed to Payment</b></a>
<div>
<div class="buttons">
<a href="#" class="cancel">Cancel Order </a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>