-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing_panel.html
50 lines (44 loc) · 1.56 KB
/
pricing_panel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="pricing.css">
</head>
<body>
<div class="pricing_panel">
<div class="plan">
<img src="icon1.png" class="hey">
<h2 class="price_header">PERSONAL</h2>
<ul class="features">
<li class="items">CUSTOM DOMAINS</li>
<li class="items">SLEEPS AFTER 30 MINS OF INACTIVITY</li>
</ul>
<span class="cost">FREE</span>
<a href="Yo" class="button">SIGN UP</a>
</div>
<div class="plan">
<img src="icon2.png" class="hey">
<h2 class="price_header">SMALL TEAM</h2>
<ul class="features">
<li class="items">NEVER SLEEPS</li>
<li class="items">MULTIPLE WORKERS FOR MORE POWERFUL APPS</li>
</ul>
<span class="cost">$150</span>
<a href="Yo" class="button">FREE TRIAL</a>
</div>
<div class="plan">
<img src="icon3.png" class="hey">
<h2 class="price_header">ENTERPRISE</h2>
<ul class="features">
<li class="items">DEDICATED</li>
<li class="items">SIMPLE HORIZONTAL SCALABILITY</li>
</ul>
<span class="cost">$400</span>
<a href="Yo" class="button">FREE TRIAL</a>
</div>
</div>
</body>
</html>