-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (82 loc) · 3.13 KB
/
index.html
File metadata and controls
84 lines (82 loc) · 3.13 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./style.css">
<title>Pricing</title>
</head>
<body>
<div class="wrapper">
<div class="pricing-table gprice-single">
<div class="head">
<h4 class="title">Basic</h4>
</div>
<div class="content">
<div class="price">
<h1>$19</h1>
</div>
<ul>
<li>5 GB Ram</li>
<li>40GB SSD Cloud Storage</li>
<li>Month Subscription</li>
<li>Responsive Framework</li>
<li> <del>Monthly Billing Software</del> </li>
<li> <del>1 Free Website</del></li>
</ul>
<div class="sign-up">
<a href="#" class="btn bordered radius">Signup Now</a>
</div>
</div>
</div>
<div class="pricing-table gprice-single">
<div class="head">
<h4 class="title">Standard</h4>
</div>
<div class="content">
<div class="price">
<h1>$29</h1>
</div>
<ul>
<li>5 GB Ram</li>
<li>40GB SSD Cloud Storage</li>
<li>Month Subscription</li>
<li>Responsive Framework</li>
<li>Monthly Billing Software</li>
<li><del>1 Free Website</del></li>
</ul>
<div class="sign-up">
<a href="#" class="btn bordered radius">Signup Now</a>
</div>
</div>
</div>
<div class="pricing-table gprice-single">
<div class="head">
<h4 class="title">Premium</h4>
</div>
<div class="content">
<div class="price">
<h1>$39</h1>
</div>
<ul>
<li>5 GB Ram</li>
<li>40GB SSD Cloud Storage</li>
<li>Month Subscription</li>
<li>Responsive Framework</li>
<li>Monthly Billing Software</li>
<li>1 Free Website</li>
</ul>
<div class="sign-up">
<a href="#" class="btn bordered radius">Signup Now</a>
</div>
</div>
</div>
</div>
<div class='links'>
<a href='https://plumco-react.wpocean.com/' target='_blank' >Template 1</a>
<a href='https://roofer-kappa.vercel.app/' target='_blank' >Template 2</a>
</div>
</body>
<script src="./script.js"></script>
</html>