-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullstack.html
371 lines (315 loc) · 14.1 KB
/
fullstack.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
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Path</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="chat.css">
<link rel="stylesheet" href="lstyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<script src="auth.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Plus Jakarta Sans", sans-serif;
}
.header{
min-height: 70vh;
}
.header,
.cta,
.sub-header {
background-image: url('tempbg.png');
background-position: center;
background-size: cover;
}
.sub-header,
.light-mode .sub-header {
background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
url('tempbg.png');
}
.dark-mode .sub-header {
background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
url('tempbg.png');
}
.phase {
position: relative;
}
.card {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
position: relative;
}
.card-header {
background-color: #ad8a38; /* Marker color */
width: 12px;
height: 100%;
position: absolute;
top: 0;
left: -6px; /* Adjust to position the marker */
}
.card-body {
padding: 20px;
}
.arrow-left,
.arrow-right {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-style: solid;
}
.arrow-left {
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent #ffffff;
left: 0;
}
.arrow-right {
border-width: 10px 10px 10px 0;
border-color: transparent #ffffff transparent transparent;
right: 0;
}
@media (max-width: 700px) {
.timeline {
margin: 50px auto;
width: 90%;
}
.card {
width: 100%;
}
}
.big-card {
width: 800px; /* Adjust the width as needed */
margin: 0 auto; /* Center the card horizontally */
border: 1px solid #ccc; /* Add border for visual clarity */
border-radius: 10px; /* Add rounded corners */
overflow: hidden; /* Ensure contents don't overflow */
}
.big-card img {
width: 100%; /* Make the image fill the entire width of the card */
height: auto; /* Maintain aspect ratio */
}
.card-content {
padding: 20px; /* Add padding around the content */
}
.card-content h2 {
font-size: 24px; /* Adjust heading font size */
margin-bottom: 10px; /* Add space below the heading */
}
.card-content p {
font-size: 18px; /* Adjust paragraph font size */
}
</style>
</head>
<body>
<section class="header">
<nav style="padding-top: 30px;">
<img style="width: 250px; margin-left: 85px;" src="nvt1.png">
<a href="index.html"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hidemenu()"></i>
<ul>
<li><a href="home2.html" style="font-size: 18px;">Home</a></li>
<li><a href="career.html" style="font-size: 18px;">Career</a></li>
<li><a href="mquiz.html" style="font-size: 18px;">Mental Health</a></li>
<li><a href="explore.html" style="font-size: 18px;">Explore</a></li>
<li><a href="ideahub.html" style="font-size: 18px;">IdeaHub</a></li>
<li><a href="community.html" style="font-size: 18px;">Community</a></li>
<li><a href="article.html" style="font-size: 18px;">Articles</a></li>
<li><a href="profile.html" style="font-size: 18px;background-color: #ad8a38; font-weight: bold; padding: 10px; border-radius: 5px;">Profile</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1 style="font-size:60px; margin-top:100px;">Wanna be a Full Stack Developer? </h1>
<p style="font-size:20px">Here's how you do it!</p>
</div>
<button class="chatbot-toggler">
<span class="material-symbols-rounded"><i class="fa-solid fa-message"></i></span>
<span class="material-symbols-outlined"><i class="fa-solid fa-xmark"></i></span>
</button>
<div class="chatbot">
<header>
<h2>Chatbot</h2>
<span class="close-btn material-symbols-outlined"><i class="fa-solid fa-xmark"></i></span>
</header>
<ul class="chatbox">
<li class="chat incoming">
<span class="material-symbols-outlined"><i class="fa-regular fa-paper-plane"></i></span>
<p>Hi there 👋<br>How can I help you today?</p>
</li>
</ul>
<div class="chat-input">
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea>
<span id="send-btn" class="material-symbols-rounded"><i class="fa-solid fa-share"></i></span>
</div>
</div>
</section>
<div class="big-card" style="margin-top: 30px;">
<img src="lala.jpg" alt="Image" style="max-width: 100%; height: auto;">
<div class="card-content">
<p style="font-size: 30px; margin-top:30px; color: black;">Full Stack Developer</p>
<p style="font-size:18px;">A full stack developer is someone who is comfortable working with both the front-end and back-end technologies required to build a complete web application. They are proficient in both client-side and server-side programming languages, frameworks, and databases.</p><br>
<p style="font-size:18px;">Full stack developers are responsible for designing, developing, testing, deploying, and maintaining web applications. They often work closely with UI/UX designers, product managers, and other stakeholders to deliver high-quality software solutions.</p><br>
<p style="font-size:18px;">Skills commonly associated with full stack developers include proficiency in HTML, CSS, JavaScript, and popular front-end frameworks like React, Angular, or Vue.js. On the back end, they are skilled in server-side languages like Node.js, Python, Ruby, or Java, as well as databases like SQL or NoSQL.</p>
</div>
</div>
<br>
<br>
<section class="course">
<h1>Choose your concept</h1>
</section>
<section class="developer-section">
<div class="row">
<div class="developer-card">
<h2>Frontend Developer</h2>
<p>Learn frontend development with this YouTube playlist:</p>
<a href="https://www.youtube.com/watch?v=Q8NPQ2RgWyg" target="_blank" class="yt-link">YouTube Playlist</a>
</div>
<div class="developer-card">
<h2>Backend Development</h2>
<p>Learn Backend development with this YouTube playlist:</p>
<a href="https://www.youtube.com/playlist?list=PLillGF-RfqbZ7s3t6ZInY3NjEOOX7hsBv" target="_blank" class="yt-link">YouTube Playlist</a>
</div>
</div>
<div class="row">
<div class="developer-card">
<h2>Connection with database</h2>
<p>Learn connection with database with this YouTube playlist:</p>
<a href="https://www.youtube.com/playlist?list=PLillGF-RfqbZ7s3t6ZInY3NjEOOX7hsBv" target="_blank" class="yt-link">YouTube Playlist</a>
</div>
<div class="developer-card">
<h2>Learn API Integration</h2>
<p>Learn API Integration with this YouTube playlist:</p>
<a href="https://www.youtube.com/playlist?list=PLillGF-RfqbZ7s3t6ZInY3NjEOOX7hsBv" target="_blank" class="yt-link">YouTube Playlist</a>
</div>
</div>
</section>
<h2 style="text-align: center;">Road Map to reach your goal faster</h2>
<br>
<br>
<img style="width:100%;"src="imgcopy.jpg">
<br><br><br>
<section class="roadmap">
<h2 style="text-align: center; margin-top:20px; font-size: 30px;">Plausible Career Phases</h2><br><br><br>
<div class="timeline" style="margin-left: 50px; margin-right: 50px;">
<div class="phase">
<div class="arrow-left"></div>
<div class="card" style="margin-bottom:10px;">
<div class="card-header"></div>
<div class="card-body">
<h2 style="padding-left: 600px;">Phase 1: Beginner</h2><br>
<p style="font-size: 20px;">Start learning HTML, CSS, and basic JavaScript.</p>
<p style="font-size: 20px;">Estimated Salary: $40,000 - $60,000 per year</p>
</div>
</div>
</div>
<div class="phase">
<div class="arrow-right"></div>
<div class="card" style="margin-bottom:10px;">
<div class="card-header"></div>
<div class="card-body">
<h2 style="padding-left: 600px;">Phase 2: Intermediate</h2><br>
<p style="font-size: 20px;">Learn front-end frameworks like React, Angular, or Vue.js.</p>
<p style="font-size: 20px;">Estimated Salary: $60,000 - $80,000 per year</p>
</div>
</div>
</div>
<div class="phase">
<div class="arrow-left"></div>
<div class="card" style="margin-bottom:10px;">
<div class="card-header"></div>
<div class="card-body">
<h2 style="padding-left: 600px;">Phase 3: Advanced</h2><br>
<p style="font-size: 20px;">Master back-end technologies like Node.js, Python, or Ruby on Rails.</p>
<p style="font-size: 20px;">Estimated Salary: $80,000 - $100,000+ per year</p>
</div>
</div>
</div>
<div class="phase">
<div class="arrow-right"></div>
<div class="card" style="margin-bottom:10px;">
<div class="card-header"></div>
<div class="card-body">
<h2 style="padding-left: 600px;">Phase 4: Expert</h2><br>
<p style="font-size: 20px;">Gain expertise in full-stack development, DevOps, and project management.</p>
<p style="font-size: 20px;">Estimated Salary: $100,000 - $150,000+ per year</p>
</div>
</div>
</div>
</div>
</section>
<section class="testimonials">
<h1 style="font-size: 40px;">Success Stories</h1>
<p style="margin-bottom:30px; font-size:20px; color:#1E293B;">Wanna know what happened to people that took the same path as you?</p>
<div class="row">
<div class="testimonial-col" style="margin-right: 30px;">
<div>
<h3 style="margin-bottom:20px;font-size: 25px;">Success Story 1</h3>
<p style="font-size:20px;">Eniola Osabiya started coding at age 12. Now, at 17 he is a fullstack developer who has clients worldwide. </p>
<p>Read more about <a href="https://blog.codersrank.io/developer-success-story-fullstack-dev-eniola/">Eniola's journey</a></p>
</div>
</div>
<div class="testimonial-col">
<div>
<h3 style="margin-bottom:20px;font-size: 25px;">Success Story 2</h3>
<p style="font-size:20px;">Fullstack developer with no CS degree: Believe in yourself</p>
<p>Read more about <a href="https://forum.freecodecamp.org/t/just-another-success-story-full-stack-developer-with-no-cs-degree-believe-in-yourself/57956">their journey</a></p>
</div>
</div>
</div>
</section>
<div id="google_translate_element"></div>
<section class="footer">
<h3 style="color: #f0dbaa; font-weight: bold;">Contact Us</h3>
<div class="icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin"></i>
</div>
</section>
<script src="cscript.js"></script>
<script>
var navlinks = document.getElementById("navLinks");
function showMenu() {
navlinks.style.right = "0";
}
function hidemenu() {
navlinks.style.right = "-200px";
}
function toggleMode() {
document.body.classList.toggle('dark-mode');
}
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const currentUser = getCurrentUser();
if (currentUser) {
if (currentUser.role === 'admin') {
document.getElementById('reviews').contentEditable = true;
} else {
document.getElementById('reviews').contentEditable = false;
}
}
});
</script>
<script src="chello.js"></script>
<script src="https://translate.google.com/translate_a/element.js?cb=loadGoogleTranslate"></script>
<script>
function loadGoogleTranslate() {
new google.translate.TranslateElement({ pageLanguage: 'en' }, 'google_translate_element');
}
</script>
</body>
</html>