-
Notifications
You must be signed in to change notification settings - Fork 0
/
wt-details.html.bak
263 lines (230 loc) · 8.66 KB
/
wt-details.html.bak
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Web Technologies Course Curriculum</title>
<link href="https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-image: url('plainbg.png'); /* Your original background image */
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: 'Inria Serif', serif;
color: #333;
}
/* Logo styling */
.icon {
position: absolute;
top: 20px;
left: 20px;
}
.icon img {
height: 50px;
width: auto;
}
/* Main container */
.container {
width: 85%;
margin: 100px auto 0;
padding: 30px;
background: rgba(255, 255, 255, 0.9);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.3s ease-in-out;
}
.container:hover {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/* Header */
.header {
text-align: center;
margin-bottom: 50px;
}
.header h1 {
font-size: 4vw;
color: #2c3e50;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
/* Module section */
.module {
margin-bottom: 40px;
padding: 20px;
background-color: #f8f9fa;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.module h2 {
font-size: 2.5vw;
color: #2980b9;
margin-bottom: 20px;
}
.lesson-list {
list-style: none;
padding-left: 0;
}
.lesson-list li {
font-size: 1.2vw;
color: #7f8c8d;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.lesson-list li::before {
content: "✔"; /* Custom checkmark bullet */
color: #27ae60;
margin-right: 10px;
}
/* Learning objectives */
.objectives {
margin: 15px 0;
padding: 10px;
background-color: #e3f2fd;
border-left: 5px solid #2980b9;
border-radius: 5px;
}
.objectives p {
font-size: 1.2vw;
color: #333;
}
/* Enroll button */
.button {
display: block;
padding: 15px 30px;
background: linear-gradient(45deg, #27ae60, #2ecc71);
color: white;
text-align: center;
text-decoration: none;
border-radius: 30px;
font-size: 1.5vw;
font-weight: bold;
margin: 40px auto;
width: 50%;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.button:hover {
background: linear-gradient(45deg, #2ecc71, #27ae60);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.explore-link {
display: block; /* Make it a block element */
font-size: 18px; /* Adjust font size to a smaller size */
margin-top: 5px; /* Space between texts */
color: black; /* Change the color to black */
text-decoration: underline; /* Underline for emphasis */
cursor: pointer; /* Change cursor on hover */
}
.explore-link:hover {
color: red; /* Change color to red on hover */
}
/* Image container styling */
.image-container {
display: flex; /* Use flexbox to align images in a row */
justify-content: center; /* Center images */
margin-top: 20px; /* Space above the image container */
width: 100%; /* Full width for the container */
}
.image-container div {
text-align: center; /* Center align text under images */
margin: 0 20px; /* Add margin between image blocks */
}
.image-container img {
width: 50px; /* Adjust the size of the images */
height: auto; /* Maintain aspect ratio */
margin-bottom: 5px; /* Space between image and link */
}
</style>
</head>
<body>
<!-- Logo in the top-left corner -->
<div class="icon">
<img src="icon.png" alt="Logo">
</div>
<div class="container">
<!-- Header -->
<div class="header">
<h1>Web Technologies Course Curriculum</h1>
</div>
<!-- Module 1 -->
<div class="module">
<h2>Module 1: Introduction to Web Technologies</h2>
<div class="objectives">
<p><strong>Learning Objectives:</strong> Understand the basic concepts of web technologies, including how the web works.</p>
</div>
<ul class="lesson-list">
<li>Lesson 1.1: What are Web Technologies?</li>
<li>Lesson 1.2: Understanding HTML, CSS, and JavaScript</li>
<li>Lesson 1.3: The Client-Server Model</li>
<li>Lesson 1.4: Overview of Web Browsers and Servers</li>
</ul>
</div>
<!-- Module 2 -->
<div class="module">
<h2>Module 2: HTML Fundamentals</h2>
<div class="objectives">
<p><strong>Learning Objectives:</strong> Learn the basics of HTML and how to structure web content.</p>
</div>
<ul class="lesson-list">
<li>Lesson 2.1: Introduction to HTML</li>
<li>Lesson 2.2: Creating Basic HTML Documents</li>
<li>Lesson 2.3: Working with Text, Links, and Images</li>
<li>Lesson 2.4: HTML Forms and Input Elements</li>
</ul>
</div>
<!-- Module 3 -->
<div class="module">
<h2>Module 3: CSS Styling</h2>
<div class="objectives">
<p><strong>Learning Objectives:</strong> Understand how to style web pages using CSS.</p>
</div>
<ul class="lesson-list">
<li>Lesson 3.1: Introduction to CSS</li>
<li>Lesson 3.2: CSS Selectors and Properties</li>
<li>Lesson 3.3: Box Model and Layout Techniques</li>
<li>Lesson 3.4: Responsive Design with Media Queries</li>
</ul>
</div>
<!-- Module 4 -->
<div class="module">
<h2>Module 4: JavaScript Basics</h2>
<div class="objectives">
<p><strong>Learning Objectives:</strong> Get an introduction to JavaScript and its role in web development.</p>
</div>
<ul class="lesson-list">
<li>Lesson 4.1: What is JavaScript?</li>
<li>Lesson 4.2: JavaScript Syntax and Operators</li>
<li>Lesson 4.3: Control Structures and Functions</li>
<li>Lesson 4.4: Introduction to DOM Manipulation</li>
</ul>
</div>
<!-- Module 5 -->
<div class="module">
<h2>Module 5: Advanced Web Technologies</h2>
<div class="objectives">
<p><strong>Learning Objectives:</strong> Explore advanced topics such as AJAX, APIs, and modern frameworks.</p>
</div>
<ul class="lesson-list">
<li>Lesson 5.1: Understanding AJAX and Asynchronous JavaScript</li>
<li>Lesson 5.2: Working with APIs</li>
<li>Lesson 5.3: Introduction to Frontend Frameworks (React, Vue, etc.)</li>
<li>Lesson 5.4: Version Control with Git and GitHub</li>
</ul>
</div>
<!-- Enroll Now button -->
</div>
</body>
</html>