-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
257 lines (240 loc) · 5.97 KB
/
Copy pathpricing.html
File metadata and controls
257 lines (240 loc) · 5.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News Insight - Pricing</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* Header Styles from index.html */
header {
background-color: #00246B;
color: #CADCFC;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
height: 40px;
top: 0;
z-index: 1000;
padding: 10px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
padding: 0;
}
.nav-links a {
color: #ffffff;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
padding: 5px 10px;
border-radius: 15px;
}
.nav-links a:hover {
color: #ffdd57;
background: rgba(255, 255, 255, 0.1);
}
.nav-links .active {
color: #ffdd57;
font-weight: bold;
background: rgba(255, 255, 255, 0.1);
}
/* Existing pricing styles with adjustments */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.header-content {
text-align: center;
padding: 100px 20px 40px; /* Adjusted padding-top to account for fixed header */
background-color: #00246B;
color: white;
}
.header-content h1 {
margin: 0;
font-size: 2.5em;
}
.header-content p {
margin-top: 10px;
font-size: 1.2em;
}
.pricing-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
.pricing-card {
background-color: white;
border-radius: 8px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
width: calc(25% - 30px);
padding: 30px;
transition: transform 0.3s ease;
}
.pricing-card:hover {
transform: translateY(-5px);
}
.pricing-card h2 {
text-align: center;
color: #0073e6;
font-size: 1.8em;
margin-top: 0;
}
.price {
font-size: 2em;
color: #0073e6;
text-align: center;
font-weight: bold;
margin: 20px 0;
}
.pricing-card ul {
list-style-type: none;
padding-left: 0;
margin-bottom: 30px;
}
.pricing-card ul li {
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}
.pricing-card ul li::before {
content: "✔";
color: #0073e6;
position: absolute;
left: 0;
}
.btn {
display: block;
width: 100%;
padding: 12px 0;
background-color: #0073e6;
color: white;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #005bb5;
}
.premium {
border-top: 4px solid #ffcc00;
}
.enterprise .price {
font-size: 1.5em;
}
.footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
}
@media (max-width: 1200px) {
.pricing-card {
width: calc(50% - 30px);
}
}
@media (max-width: 768px) {
.pricing-card {
width: 100%;
}
}
</style>
</head>
<body>
<!-- New header from index.html -->
<header>
<nav>
<div class="logo">News Insight</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="pricing.html" class="active">Pricing</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<!-- Renamed from header to header-content -->
<div class="header-content">
<h1>Pricing Plans</h1>
<p>Choose the plan that suits your needs and enjoy exclusive features to stay informed.</p>
</div>
<section class="pricing-container">
<!-- Free Plan -->
<div class="pricing-card">
<h2>Free Plan</h2>
<p class="price">$0/month</p>
<ul>
<li>Access to limited articles per month</li>
<li>Basic news categories</li>
<li>Standard reading experience (with ads)</li>
</ul>
<button class="btn">Sign Up for Free</button>
</div>
<!-- Premium Plan -->
<div class="pricing-card premium">
<h2>Premium Plan</h2>
<p class="price">$9.99/month</p>
<ul>
<li>Unlimited access to all articles</li>
<li>Ad-free reading experience</li>
<li>Exclusive premium content</li>
<li>Access to archives</li>
<li>Monthly curated newsletter</li>
</ul>
<button class="btn">Go Premium</button>
</div>
<!-- Pro Plan -->
<div class="pricing-card">
<h2>Pro Plan</h2>
<p class="price">$19.99/month</p>
<ul>
<li>All Premium Plan features</li>
<li>Early access to breaking news</li>
<li>Personalized recommendations</li>
<li>Priority customer support</li>
<li>Downloadable PDFs of articles</li>
</ul>
<button class="btn">Subscribe to Pro</button>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card enterprise">
<h2>Enterprise Plan</h2>
<p class="price">Custom Pricing</p>
<ul>
<li>Unlimited access for teams</li>
<li>Customizable news dashboards</li>
<li>Dedicated account manager</li>
<li>API access for integration</li>
</ul>
<button class="btn">Contact for Enterprise</button>
</div>
</section>
<footer class="footer">
© 2024 News Insight | All Rights Reserved
</footer>
</body>
</html>