-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (61 loc) · 2.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hosting Pricing Plans</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Responsive CSS3 Hosting Pricing Plans </h2>
<div class="col">
<ul class="price-box">
<div class="price-header">
<li class="price-title">FREE PLAN</li>
<li><span class="currency">$</span> <span class="value">0</span> <span class="duration">/Month</span></li>
<li class="price-text">Suitable for sites that does not receive much traffic.</li>
</div>
<div class="price-list">
<li> <strong>512MB</strong> Memory</li>
<li><strong>1 Core</strong> Procesor</li>
<li><strong>20GB</strong> SSD Disk</li>
<li><strong>1TB</strong> Data Transfer</li>
<li ><a href="#" class="button-1">START MY FREE TRIAL</a></li>
</div>
</ul>
</div>
<div class="col">
<ul class="price-box best">
<div class="price-header">
<li class="price-title">MEDIUM PLAN</li>
<li><span class="currency">$</span> <span class="value">10</span> <span class="duration">/Month</span></li>
<li class="price-text">Suitable for sites that have medium traffic each day.</li>
</div>
<div class="price-list">
<li> <strong>1GB</strong> Memory</li>
<li><strong>1 Core</strong> Procesor</li>
<li><strong>40GB</strong> SSD Disk</li>
<li><strong>2TB</strong> Data Transfer</li>
<li ><a href="#" class="button-2">SELECT PLAN</a></li>
</div>
</ul>
</div>
<div class="col">
<ul class="price-box">
<div class="price-header">
<li class="price-title">PRO PLAN</li>
<li><span class="currency">$</span> <span class="value">50</span> <span class="duration">/Month</span></li>
<li class="price-text">Suitable for sites that have huge traffic each day.</li>
</div>
<div class="price-list">
<li> <strong>3GB</strong> Memory</li>
<li><strong>2 Core</strong> Procesor</li>
<li><strong>80GB</strong> SSD Disk</li>
<li><strong>10TB</strong> Data Transfer</li>
<li ><a href="#" class="button-2">SELECT PLAN</a></li>
</div>
</ul>
</div>
</body>
</html>