-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtraProjects.html
More file actions
237 lines (217 loc) · 9.28 KB
/
ExtraProjects.html
File metadata and controls
237 lines (217 loc) · 9.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Projects</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<style>
</style>
</head>
<body>
<div class="offcanvas offcanvas-start text-bg-dark" id="demo">
<div class="offcanvas-header">
<h1 class="offcanvas-title" style="text-align: center;">Where would you like to go?</h1>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas"></button>
</div>
<div class="offcanvas-body">
<a href="index.html" class="active" style="text-decoration: none; color: ghostwhite;"><h2>Home</h2></a>
<a href="ExtraProjects.html" style="text-decoration: none; color: ghostwhite;"><h2>Projects</h2></a>
<a href="review.html" style="text-decoration: none; color: ghostwhite;"><h2>Review</h2></a>
<a href="labs.html" style="text-decoration: none; color: ghostwhite;"><h2>Lab</h2></a>
</div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<div class="container-fluid mt-3">
<button class="btn text-light" type="button" data-bs-toggle="offcanvas" data-bs-target="#demo"><h2> ☰ Menu</h2>
</button>
</div>
</div>
</nav>
<br>
<!-- <nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ExtraProjects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="labs.html">Labs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="review.html">Review</a>
</li>
</ul>
</div>
</nav> -->
<div style="text-align: center;">
<h1>Projects</h1>
<h3>
Here are the Projects that were completed over the time period. We explored from coloring text to creating borders for our websites.
</h3>
</div>
<div>
<br>
<div id="accordion">
<!--Collapsable One-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseOne">
How Make A Halloween Card
</a>
</div>
<div id="collapseOne" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
In this project we were instructed to edit the index.html to create a halloween card. We used to use CSS to customise your card to make it stand out. I liked this project because it was a nice vhange from the typical Labs we completed. I am proud that I was able to do the work because I was absent and had to infer. Click the link to see the card.
<br>
<br>
<a href="https://learners-make-a-halloween-card-jauneldeans.wdp7-8.repl.co/" target="_blank">Halloween Card</a>
<br>
<br>
Below is the code for used to create the card.
</div>
</div>
</div>
<!--Collapsable Two-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseTwo">
Tell a Story
</a>
</div>
<div id="collapseTwo" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
In this Project we used CSS and HTML to design a comic strip. The story was to be original and creative. My story was title 'The Teddy Bear'. It was from the perspective of a
toy bear in a shop. He was talking about the day in a shopping mall. Click the link to view the comic strip.
<br>
<br>
<a href="https://learners-tell-a-story-jauneldeans.wdp7-8.repl.co/" target="_blank">The Teddy Bear</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Three-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseThree">
Poster
</a>
</div>
<div id="collapseThree" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
In the Poster Project, we were instructed to create a wanter poster about any picture we desire and make it appealing to the eye using CSS. It was a fun and easy project that was a great way for us to use CSS tags like color and borders.
<br>
<br>
<a href="https://learners-poster-jauneldeans.wdp7-8.repl.co/" target="_blank">Wanted Poster</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Four-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseFour">
Make a Robot
</a>
</div>
<div id="collapseFour" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
In this project, we were give pieces to create the face of two robots. To do this we had to move the body parts and accessories using CSS. This was a way to practice the absolute and relative positioning. The link to see the Robots is below.
<br>
<br>
<a href="https://learners-make-a-robot-jauneldeans.wdp7-8.repl.co/" target="_blank">Robots</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Five-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseFive">
Make a Recipe
</a>
</div>
<div id="collapseFive" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
In this project we had to create our own recipe card. We used the table, headings, paragraph, unordered lists and ordered lists. We also inserted images. My project was How to Make Spaghetti with Garlic Bread. The link below will show the recipe.
<br>
<br>
<a href="https://learners-make-a-recipe-jauneldeans.wdp7-8.repl.co/" target="_blank">How to Make Spaghetti with Garlic Bread</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Six-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseSix">
Ghost School Project
</a>
</div>
<div id="collapseSix" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
Ghost School is a educational game. The objective of the game is to get use to the life you know havce by helping out around the school. To move on you have to complete levels using code. For the last level we are to create 3 before and after puzzles. The levels are easy, medium and hard. The goal is to look at the before picture for 5 seconds then the screen will change to the after image. The user has to guess which three pictures are different. Click the link to try and play the game.
<br>
<br>
<a href="https://final-project-ghost-school-jauneldeans.wdp7-8.repl.co/" target="_blank">Ghost School Game</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Seven-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseSeven">
Teacher Appreciation Week
</a>
</div>
<div id="collapseSeven" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
During this project, we were instructed to create a teacher appreciation website and send it to one of our teachers during the week. The link below is an example about how I show my appreciation to my teachers.
<br>
<br>
<a href="https://project-teacher-appreciation-week-jauneldeans.wdp7-8.repl.co/index.html" target="_blank"> Teacher Appreciation </a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
<!--Collapsable Eight-->
<div class="card">
<div class="card-header">
<a class="collapsed btn bg-warning" data-bs-toggle="collapse" href="#collapseEight">
The Congressional App Challenge
</a>
</div>
<div id="collapseEight" class="collapse bg-warning" data-bs-parent="#accordion">
<div class="card-body">
This website was submitted to a competition in NYC. We were to make a webssite about anything and submit it to the judges. My partner and I made and website about his favorite car, The Nissan Skyline R34. If more time was given and we had more experience, I am sure the website would have looked much better. Click to link to view the work.
<br>
<br>
<a href="https://congressionalappchallenge-wdp7-8-1.wdp7-8.repl.co/" target="_blank"> Congressional App Submission</a>
<br>
<br>
Below is the code used to make the project:
</div>
</div>
</div>
</div>
</body>
</html>