-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprice.html
More file actions
199 lines (188 loc) Β· 8.53 KB
/
Copy pathprice.html
File metadata and controls
199 lines (188 loc) Β· 8.53 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Plans</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="bg-gray-300">
<!-- Add Header -->
<header class="main-header bg-white shadow-lg">
<nav class="nav-container max-w-7xl mx-auto px-4 py-3">
<div class="logo">
<img src="logo.jpg" alt="Skill Valley Logo" class="logo-img" style="width: 50px; height: 50px;">
<h1 style="font-size: 25px; color: #2d3748; font-weight: 600; font-family: 'Roboto', sans-serif;">Skill Valley</h1>
</div>
<div class="nav-links">
<a href="index.html#main-hero" class="nav-link">Home</a>
<a href="index.html#course-section" class="nav-link">Courses</a>
<a href="price.html" class="nav-link">Pricing</a>
<a href="index.html#hero-section" class="nav-link">About</a>
<a href="index.html#login-section" class="login-btn">Login</a>
</div>
</nav>
</header>
<!-- Add header styles -->
<style>
.main-header {
position: sticky;
top: 0;
z-index: 1000;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.nav-links {
display: flex;
gap: 20px;
align-items: center;
}
.nav-link {
color: #4a5568;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.nav-link:hover {
color: #3182ce;
}
.login-btn {
background: #3182ce;
color: white;
padding: 6px 16px;
border-radius: 4px;
text-decoration: none;
font-size: 0.9rem;
transition: background-color 0.2s;
}
.login-btn:hover {
background: #2c5282;
}
</style>
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="text-center mb-8">
<h2 class="text-3xl font-extrabold text-gray-900">Pricing Plans</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Personal Plan -->
<div class="bg-white shadow-lg rounded-lg border border-gray-200">
<div class="bg-[#FFF] rounded-t-lg p-4">
<h3 class="text-lg font-semibold text-black">Basic Plan</h3>
</div>
<div class="p-6" >
<p class="text-2xl font-bold text-gray-900 mb-2">βΉ49/Quarter</p>
<button class="w-full bg-[#FFD700] text-black py-2 rounded-lg font-semibold hover:bg-[#FFD760] transition duration-300">
Start subscription <i class="fas fa-arrow-right ml-2"></i>
</button>
<ul class="mt-6 space-y-4">
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Certification prep
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Goal-focused recommendations
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
AI-powered coding exercises
</li>
</ul>
</div>
</div>
<!-- Team Plan -->
<div class="bg-white shadow-lg rounded-lg border border-gray-200">
<div class="bg-[#FFF] rounded-t-lg p-4">
<h3 class="text-lg font-semibold text-black">Standard Plan</h3>
</div>
<div class="p-6">
<p class="text-2xl font-bold text-gray-900 mb-2">βΉ149/Half Year</p>
<button class="w-full bg-[#FFD700] text-black py-2 rounded-lg font-semibold hover:bg-[#FFD760] transition duration-300">
Start subscription <i class="fas fa-arrow-right ml-2"></i>
</button>
<ul class="mt-6 space-y-4">
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Certification prep
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Goal-focused recommendations
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
AI-powered coding exercises
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Analytics and adoption reports
</li>
</ul>
</div>
</div>
<!-- Enterprise Plan -->
<div class="bg-white shadow-lg rounded-lg border border-gray-200">
<div class="bg-[#FFF] rounded-t-lg p-4">
<h3 class="text-lg font-semibold text-black">Yearly Plan</h3>
</div>
<div class="p-6">
<p class="text-2xl font-bold text-gray-900 mb-2">βΉ239/Year</p>
<button class="w-full bg-[#FFD700] text-black py-2 rounded-lg font-semibold hover:bg-[#FFD760] transition duration-300">
Start subscription <i class="fas fa-arrow-right ml-2"></i>
</button>
<ul class="mt-6 space-y-4">
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Certification prep
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Goal-focused recommendations
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
AI-powered coding exercises
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Advanced analytics and insights
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Customizable content
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
Hands-on tech training with add-on
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Add AI Chatbot -->
<script type="text/javascript">
(function(d, t) {
var v = d.createElement(t), s = d.getElementsByTagName(t)[0];
v.onload = function() {
window.voiceflow.chat.load({
verify: { projectID: '67aaeb3ec1f7f579513cb4d7' },
url: 'https://general-runtime.voiceflow.com',
versionID: 'production'
});
}
v.src = "https://cdn.voiceflow.com/widget-next/bundle.mjs";
v.type = "text/javascript";
s.parentNode.insertBefore(v, s);
})(document, 'script');
</script>
</body>
</html>