-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
38 lines (32 loc) · 1.44 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 name="viewport" content="width=device-width, initial-scale =1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/png" sizes="favicon-32x32" href="./order-summary-component-main/images/favicon-32x32.png">
<title>Frontend Mentor | Order summary card</title>
</head>
<body>
<div class = "inner_container">
<img class="image_header" src="./order-summary-component-main/images/illustration-hero.svg" width="100%" height="100%" alt="head image">
<div id="main_container">
<div class = "introduction">
<p class="order_header">Order Summary</p>
<p class="order_body">You can now listen to millions of songs, audiobooks, and podcasts on any device anywhere you like!</p>
</div>
<div class="plan_box">
<img class="music_icon" src="./order-summary-component-main/images/icon-music.svg" width="50em" height="50em" alt="music icon">
<p class="annual_plan">Annual Plan<span>$59.99/year</span></p>
<a class="link" href="#" >Change</a>
</div>
<div class="payment">
<button>Proceed to Payment</button>
</div>
<div class="cancel_order">
Cancel Order
</div>
</div>
</div>
</body>
</html>