-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
399 lines (334 loc) · 17.2 KB
/
index.html
File metadata and controls
399 lines (334 loc) · 17.2 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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!--
index.html
By: Gabriel Sessions
Last Edited: September 4th, 2022
EN 1 Simple Robotics
Fall 2022
The homepage for the EN 1 Sample Portfolio
Each page in the portfolio (including the homepage) has an upper
navigation bar to switch between pages in the website.
The homepage includes a basic grid of cards that provide a basic overview of
the student's work.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Boilerplate HTML -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
TODO: Name of the Page, replace "My Page Name!" with your own page name
(like "EN 1 Porfolio Home")
-->
<title>Walid Nejmi's EN 1 Portfolio</title>
<!--
Bootstrap import: CSS stylesheets
Allows Boostrap to add fancy style properties to your HTML
to make it "look good".
-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!--
Bootstrap import: JS Scripts
Adds interactivity to the Boostrap components you add
-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous">
</script>
</head>
<!-- Put all of your main HTML content in the body -->
<body>
<!--
Navigation bar at the top of the screen
Includes links to all of the project pages
-->
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<!-- Navbar title, link to the home page (index.html) -->
<a class="navbar-brand" href="./index.html">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- List of navbar links -->
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<!-- <li class="nav-item">
<a class="nav-link" href="./object-redesign/">Object Redesign</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="./project01/index.html">Project 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project02/index.html">Project 2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project03/index.html">Project 3</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project04/index.html">Project 4</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project05/index.html">Project 5</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project06/index.html">Project 6</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project07/index.html">Project 7</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project08/index.html">Project 8</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project09/index.html">Project 9</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./project10/index.html">Project 10</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Large Website Title on Homepage -->
<!-- TODO: Change the site name -->
<h1 style="margin-top: 1rem; margin-bottom: 2rem; text-align: center;">Walid's EN 1 Portfolio</h1>
<!-- Grid of Project Cards (main body of homepage) -->
<section>
<!-- Begin Row for Project "Object Redesign" and Project 1 and 2 -->
<div class="container text-center d-flex justify-content-center">
<!--
To create a new row of project cards, add a new
<div class="row"></div> section after this div!
-->
<div class="row">
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="me.jpg" class="card-img-top" alt="Project 1 Robot">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 1: <br/> Getting to Know You</h5>
<!-- A brief description of the project -->
<p class="card-text">Get to know me and my sister with LEGO!</p>
<!-- Button that links to your project page -->
<a href="./project01/index.html" class="btn btn-primary">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="trex.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 2: Silly Walks</h5>
<!-- A brief description of the project -->
<p class="card-text">The T-Rex is coming to Boston!</p>
<!-- Button that links to your project page -->
<a href="./project02/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Row for Object Redesign + Projects 1 & 2 -->
<!-- Begin Row for Projects 3, 4, and 5 -->
<div class="container text-center d-flex justify-content-center">
<!--
To create a new row of project cards, add a new
<div class="row"></div> section after this div!
-->
<div class="row">
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="sloth.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 3: Biomimicry</h5>
<!-- A brief description of the project -->
<p class="card-text">Who doesn't like sloths?</p>
<!-- Button that links to your project page -->
<a href="./project03/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="spinner1.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 4: Top Spinner</h5>
<!-- A brief description of the project -->
<p class="card-text">LEGO Top Spinner!</p>
<!-- Button that links to your project page -->
<a href="./project04/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="flower.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 5: Spirograph</h5>
<!-- A brief description of the project -->
<p class="card-text">Drew a flower without my hand!</p>
<!-- Button that links to your project page -->
<a href="./project05/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Row for Projects 3, 4, and 5 -->
<!-- Begin Row for Projects 6, 7, and 8 -->
<div class="container text-center d-flex justify-content-center">
<!--
To create a new row of project cards, add a new
<div class="row"></div> section after this div!
-->
<div class="row">
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="car.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 6: Simple car</h5>
<!-- A brief description of the project -->
<p class="card-text">Simplest car ever!</p>
<!-- Button that links to your project page -->
<a href="./project06/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="square.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 7: Draw a square</h5>
<!-- A brief description of the project -->
<p class="card-text">Is it really a square?</p>
<!-- Button that links to your project page -->
<a href="./project07/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="wow.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 8: Astronaut tools</h5>
<!-- A brief description of the project -->
<p class="card-text">What if you wanted to work in space?</p>
<!-- Button that links to your project page -->
<a href="./project08/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Row for Projects 6, 7, and 8 -->
<!-- Begin Row for Projects 9 and 10 -->
<div class="container text-center d-flex justify-content-center">
<!--
To create a new row of project cards, add a new
<div class="row"></div> section after this div!
-->
<div class="row">
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="arm.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 9: Robotic arm</h5>
<!-- A brief description of the project -->
<p class="card-text">Selling this one for 1500.. cents</p>
<!-- Button that links to your project page -->
<a href="./project09/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<div class="card" style="width: 18rem;">
<!--
Card Image (<img> tag)
Important: Change src attribute to your image's path!
Optional: Add some "alt" text to describe what your image is
-->
<img src="house.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<!-- Title of your project -->
<h5 class="card-title">Project 10: Haunted House</h5>
<!-- A brief description of the project -->
<p class="card-text">Just don't open the door...</p>
<!-- Button that links to your project page -->
<a href="./project10/index.html" class="btn btn-primary ">View Project</a>
</div>
</div>
</div>
<div class="col-sm mx-4 mb-4">
<!-- Bootstrap Card Component -->
<!-- THIS IS BLANK; to add anohter project, copy-and-paste previous card code and update -->
</div>
</div>
</div>
<!-- End Row for Project 9 and 10 -->
</section>
</body>
</html>