-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.02 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
<!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="style.css">
</head>
<body>
<div class="container">
<div class="pic">
<img src="./images/illustration-hero.svg">
<div class="heading">
<h1>Order Summary</h1>
<p>You can now listen to millions of songs, </br>
audiobooks, and podcasts on any device </br>
anywhere you like!</p>
</div>
<div class="price">
<img src="./images/icon-music.svg">
<p>Annual Plan</br>
$59.99/year</p>
<span class="lnk"><a href="">change</a></span>
</div>
<div class="btn">
<button class="proceed">Proceed to Payment</button>
<button class="cancel">Cancel Order</button>
</div>
</div>
</body>
</html>