-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechsetup.html
More file actions
254 lines (236 loc) ยท 8.77 KB
/
techsetup.html
File metadata and controls
254 lines (236 loc) ยท 8.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lesson 1: Welcome & Setup</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #333;
}
.container {
max-width: 1000px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.header {
text-align: center;
margin-bottom: 30px;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 10px;
}
.timeline {
display: flex;
justify-content: space-between;
margin: 30px 0;
position: relative;
}
.timeline::before {
content: '';
position: absolute;
top: 20px;
left: 0;
right: 0;
height: 3px;
background: #667eea;
}
.timeline-item {
text-align: center;
flex: 1;
position: relative;
}
.timeline-dot {
width: 20px;
height: 20px;
background: #667eea;
border-radius: 50%;
margin: 0 auto 10px;
position: relative;
z-index: 2;
}
.setup-step {
background: #f8f9fa;
padding: 20px;
margin: 15px 0;
border-radius: 8px;
border-left: 4px solid #667eea;
}
.btn {
display: inline-block;
background: #667eea;
color: white;
padding: 12px 24px;
text-decoration: none;
border-radius: 5px;
margin: 10px 5px;
transition: background 0.3s;
}
.btn:hover {
background: #764ba2;
}
.schedule-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin: 20px 0;
}
.option-card {
background: #e7f3ff;
padding: 15px;
border-radius: 8px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>๐ Welcome to Your Web Development Journey!</h1>
<p>Lesson 1: Setup, Structure & Roadmap</p>
</div>
<!-- Today's Agenda -->
<div class="setup-step">
<h2>๐
Today's 1-Hour Agenda</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot"></div>
<strong>0-15 min</strong>
<p>Course Overview</p>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<strong>15-40 min</strong>
<p>Tech Setup</p>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<strong>40-55 min</strong>
<p>Next Lessons Preview</p>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<strong>55-60 min</strong>
<p>Schedule Next Sessions</p>
</div>
</div>
</div>
<!-- Course Structure -->
<div class="setup-step">
<h2>๐ฏ Your 1-Year Learning Path</h2>
<h3>Phase 1: Foundation (Months 1-3)</h3>
<ul>
<li><strong>Week 1-4:</strong> HTML, CSS, JavaScript Basics</li>
<li><strong>Week 5-8:</strong> Responsive Design, Git, Projects</li>
<li><strong>Week 9-12:</strong> Advanced JavaScript, APIs</li>
</ul>
<h3>Phase 2: Specialization (Months 4-12)</h3>
<ul>
<li><strong>Frontend Focus:</strong> React, Modern Frameworks</li>
<li><strong>Full-Stack Path:</strong> Node.js, Databases</li>
<li><strong>Portfolio Building:</strong> Real Client Projects</li>
</ul>
</div>
<!-- Tech Setup -->
<div class="setup-step">
<h2>โ๏ธ Essential Setup (We'll Do This Together)</h2>
<h3>1. Code Editor</h3>
<p><strong>Visual Studio Code</strong> - Free, professional editor</p>
<a href="https://code.visualstudio.com/download" class="btn" target="_blank">Download VS Code</a>
<h3>2. Web Browser</h3>
<p><strong>Chrome or Firefox</strong> - Best for development</p>
<h3>3. GitHub Account</h3>
<p>Your developer portfolio & version control</p>
<a href="https://github.com/signup" class="btn" target="_blank">Create GitHub Account</a>
<h3>4. File Organization</h3>
<p>We'll create your project folder structure</p>
</div>
<!-- Next Lessons Preview -->
<div class="setup-step">
<h2>๐ฎ What's Coming Next</h2>
<h3>Lesson 2: Your First Website</h3>
<ul>
<li>Build a professional "About Me" page</li>
<li>HTML structure & semantics</li>
<li>Live server setup</li>
</ul>
<h3>Lesson 3: Making It Beautiful</h3>
<ul>
<li>CSS styling & layout</li>
<li>Colors, fonts, spacing</li>
<li>Mobile-responsive design</li>
</ul>
<h3>Lesson 4: Interactive Elements</h3>
<ul>
<li>Basic JavaScript</li>
<li>Button clicks & user interactions</li>
<li>Form handling</li>
</ul>
</div>
<!-- Scheduling -->
<div class="setup-step">
<h2>๐
Schedule Your Learning Journey</h2>
<h3>Recommended Pace Options:</h3>
<div class="schedule-options">
<div class="option-card">
<h4>๐ Accelerated</h4>
<p>5 hours/week</p>
<p><strong>2 sessions + practice</strong></p>
<small>Fastest progress</small>
</div>
<div class="option-card">
<h4>โ๏ธ Balanced</h4>
<p>3 hours/week</p>
<p><strong>1 session + practice</strong></p>
<small>Steady growth</small>
</div>
<div class="option-card">
<h4>๐ข Foundation</h4>
<p>2 hours/week</p>
<p><strong>1 session</strong></p>
<small>Slow & steady</small>
</div>
</div>
<h3>Let's Schedule Your Next 5 Sessions:</h3>
<p>Based on your 10-hour pack, we'll book:</p>
<ul>
<li>Session 2: Your First Website</li>
<li>Session 3: CSS Styling</li>
<li>Session 4: JavaScript Basics</li>
<li>Session 5: Responsive Design</li>
<li>Session 6: Portfolio Project Start</li>
</ul>
<div style="text-align: center; margin: 20px 0;">
<a href="#" class="btn">๐
Book Next Session Now</a>
<a href="#" class="btn">๐๏ธ View Available Times</a>
</div>
</div>
<!-- Success Checklist -->
<div class="setup-step">
<h2>โ
Today's Success Checklist</h2>
<ul>
<li>โ Understand the 1-year learning path</li>
<li>โ VS Code installed & configured</li>
<li>โ GitHub account created</li>
<li>โ Project folder structure setup</li>
<li>โ Next 5 sessions scheduled</li>
<li>โ Clear expectations for Lesson 2</li>
</ul>
</div>
<div style="text-align: center; margin-top: 30px; padding: 20px; background: #e7f3ff; border-radius: 10px;">
<h3>๐ You're Officially a Developer-in-Training!</h3>
<p>Next session: We build your first real website from scratch!</p>
<p><strong>Remember:</strong> Every expert was once a beginner. You've taken the most important step - starting.</p>
</div>
</div>
</body>
</html>