-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
38 lines (34 loc) · 1.2 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
<!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">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Order summary card</title>
</head>
<body >
<div class="center-body">
<div class="first-container">
<img id="img-tag" src="images/illustration-hero.svg" alt="image">
<div class="Second-container">
<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="third-container">
<img src="images/icon-music.svg" alt="music">
<div>
<p class="plan">Annual plan</p>
<p class="price">$59.99/year</p>
</div>
<a href="#" class="btn">change</a>
</div>
<div class="fourth-container">
<button class="btn btn-primary">Proceed to Payment</button>
<button class="btn btn-secondary">Cancel Order</button>
</div>
</div>
</div>
</body>
</html>