-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="favicon" href="./src/images/favicon-32x32.png"/>
<link rel="stylesheet" href="./src/css/index.css"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Order Summary Co><br/>mponent</title>
</head>
<body>
<main>
<div class="hero">
<img src="./src/images/illustration-hero.svg"/>
</div>
<div class="info">
<h2 class="dark bold">Order Summary</h2>
<p class="thin centered shaded">You can now listen to millions of songs<br/> audiobooks, and podcasts on any device<br/>anywhere you like!</p>
<div class="plan-type">
<div class="part">
<img src="./src/images/icon-music.svg"/>
<p>
<span class="dark bold">Annual Plan</span>
<span class="thin shaded">$59.99/year</span>
</p>
</div>
<a href="#" class="medium primary-color">Change</a>
</div>
<button class="medium primary">Proceed to Payment</button>
<button class="medium secondary">Cancel Order</button>
</div>
</main>
</body>
</html>