-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing_mobile.html
105 lines (95 loc) · 3.38 KB
/
pricing_mobile.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing</title>
<link rel="stylesheet" href="css/style_mobile.css">
</head>
<body>
<div id="pricing">
<nav class="home-navigation">
<div class="logo">
<b>foi<span class="logo-green">nni</span></b>
</div>
<a href="#" class="menu-icon"> </a>
<div class="menu-wrapper">
<ul class="mobile">
<li><a href="index_mobile.html">Home</a></li>
<li><a href="service_mobile.html">Service</a></li>
<li><a href="meetus_mobile.html">Meet us</a></li>
<li><a href="portfolio_mobile.html">Portfolio</a></li>
<li><a href="contacts_mobile.html">Contact</a></li>
</ul>
</div>
</nav>
<h2>Our Pricing Plans</h2>
<div class="pricing-list">
<section class="pricing-plan">
<h4>Basic</h4>
<div class="price-wrapper">
<div class="price">
<p><sup class="price-up">$</sup><span class="price-bold">20</span>/m</p>
</div>
<ul>
<li>15 projects</li>
<li>30 GB Storage</li>
<li>Unlimited Data Transfer</li>
<li>50 GB Bandwith</li>
<li>24/7 Support</li>
</ul>
<a class="btn" href="#">Order Now</a>
</div>
</section>
<section class="pricing-plan">
<h4>Standard</h4>
<div class="price-wrapper">
<div class="price">
<p><sup class="price-up">$</sup><span class="price-bold">40</span>/m</p>
</div>
<ul>
<li>15 projects</li>
<li>30 GB Storage</li>
<li>Unlimited Data Transfer</li>
<li>50 GB Bandwith</li>
<li>24/7 Support</li>
</ul>
<a class="btn" href="#">Order Now</a>
</div>
</section>
<section class="pricing-plan">
<h4>Business</h4>
<div class="price-wrapper">
<div class="price">
<p><sup class="price-up">$</sup><span class="price-bold">80</span>/m</p>
</div>
<ul>
<li>15 projects</li>
<li>30 GB Storage</li>
<li>Unlimited Data Transfer</li>
<li>50 GB Bandwith</li>
<li>24/7 Support</li>
</ul>
<a class="btn" href="#">Order Now</a>
</div>
</section>
<section class="pricing-plan">
<h4>Premium</h4>
<div class="price-wrapper">
<div class="price">
<p><sup class="price-up">$</sup><span class="price-bold">120</span>/m</p>
</div>
<ul>
<li>15 projects</li>
<li>30 GB Storage</li>
<li>Unlimited Data Transfer</li>
<li>50 GB Bandwith</li>
<li>24/7 Support</li>
</ul>
<a class="btn" href="#">Order Now</a>
</div>
</section>
</div>
</div>
</body>
</html>