-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
69 lines (66 loc) · 2.52 KB
/
Copy pathpricing.html
File metadata and controls
69 lines (66 loc) · 2.52 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
<!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="pricingstyle.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<h1 class="logo">LOGO</h1>
<ul class="nav-items">
<li class="nav-item"><a href="project.html">HOME</a></li>
<li class="nav-item"><a href="about.html">ABOUT</a></li>
<li class="nav-item"><a href="work.html">WORK</a></li>
<li class="nav-item"><a href="pricing.html">PRICING</a></li>
</ul>
</nav>
<div class="pricing-section">
<div class="container">
<h1 class="pricing-heading">Choose Your Plan</h1>
<div class="pricing-plans">
<div class="pricing-plan">
<h2>Basic</h2>
<p class="price">$0 / month</p>
<ul class="features">
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
<div class="pricing-plan">
<h2>Pro</h2>
<p class="price">$10 / month</p>
<ul class="features">
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
<li>Feature 4</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
<div class="pricing-plan">
<h2>Premium</h2>
<p class="price">$20 / month</p>
<ul class="features">
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
<li>Feature 4</li>
<li>Feature 5</li>
</ul>
<a href="#" class="btn">Get Started</a>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p>© 2024 Your Company. All rights reserved.</p>
</div>
</footer>
</body>
</html>