-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
259 lines (217 loc) · 8.17 KB
/
index.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
<!DOCTYPE html>
<!--
Student Name: Bernice Templeman
File Name: index.html
Date: 10/07/204
-->
<html lang="en">
<head>
<title>Portfolio: WEB-340 Projects</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Emblema+One&family=Lora&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/appletouch-icon.png">
<link rel="icon" sizes="192x192" href="images/android-chrome-192.png">
<style>
.cards {
display: flex;
justify-content: space-between;
padding: 20px;
}
.card {
box-shadow: 0 4px 8px 0 navy;
transition: 0.3s;
width: 25%;
margin: 0.9em;
padding: 5px;
}
.card:hover {
box-shadow: 16px; rgba(0, 0, 0, 0.2);
}
.container {
padding: 16px;
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.button-link {
display: flex;
margin: 0 auto;
background-color: #008cba;
color: white;
padding: 15px 32px;
font-size: 16px;
height: 25px;
width: 100px;
}
.button-link:hover {
background-color: #04aa6d; /* Green */
color: white;
}
</style>
</head>
<body>
<div id="wrapper">
<!-- Use the header area for the website name or logo -->
<header>
<div class="tab-desk">
</div>
<div class="mobile">
<h1>🗣 Portfolio</h1>
<h3>Bernice Templeman</h3>
</div>
</header>
<!-- Use the nav area to add hyperlinks to other pages within the website-->
<nav>
<ul>
<li><a href="index.html">Node.js</a></li>
</ul>
</nav>
<!-- Use the main area to add the main content to the webpage -->
<main>
<!-- Section for Picture, goals, accomplishments, experience, education
-->
<h2>Node.js Projects</h2>
<div class="centered">
<section class="cards">
<article class="card">
<img style="" src="./images/weight-converter.png" alt="weight converter" />
<h3>week-1: Weight Converter</h3>
<p>Description: Converts pounds to kilograms</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/cooking.png" alt="cooking app" />
<h3>week-2: Cooking App</h3>
<p>Description: Recipe Modules: Contains functions: createRecipe, setTimer, and quit.</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img
style=""
src="./images/distance.png"
alt="Distance calculator"
/>
<h3>week-3: Distance Calculator</h3>
<p>Description: calculate the distance between two planets.</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/superhero.png" alt="Superhero App" />
<h3>week-4: Superhero App</h3>
<p>Description: SuperheroEmitter class that extends EventEmitter and implements the following methods: performAction, encounterDanger, and helpSomeone</p>
<p>Technologies:Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/pie.png" alt="MongoDB projections" />
<h3>week-5: Pie Baker</h3>
<p>Description: module that simulates a simple pie baker.</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img
style=""
src="./images/server.png"
alt="HTTP server"
/>
<h3>week-6: Fantasy Game Character Creator</h3>
<p>Description: HTTP Server for character creation</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a
>
</article>
<article class="card">
<img style="" src="./images/class.png" alt="class" />
<h3>week-7: Fantasy Character Creation</h3>
<p>Description: create a CharacterCreator class that extends the
Duplex stream class from Node.js’s built-in stream module.</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/callbacks-promises.png" alt="callbacks or promises.png" />
<h3>week-8: Character Creation</h3>
<p>Description: This file allows you to choose between using callbacks or promises (async/await) for handling asynchronous operations</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img
style=""
src="./images/child-process.png"
alt="child process"
/>
<h3>week-9: Fantasy game characters</h3>
<p>Description: GameCharacters class that retrieves and processes data from a separate JavaScript file using Node.js child processes.
This class will have a getCharacters method that spawns a child process to run a script,
captures the data it sends back, and passes this data to a callback function..</p>
<p>Technologies: Node.js</p>
<p>Learned: Node.js</p>
<a
href="https://github.com/bernicetempleman1/web-340"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
</section>
</div>
<a href='https://github.com/bernicetempleman1/web-340'>GitHub repository</a></li>
</main>
<!-- Use the footer area to add webpage footer content-->
<footer>
<p>© Copyright 2024. All Rights Reserved.</p>
<p><a href="mailto:bernice.templeman1@gmail.com">bernice.templeman1@gmail.com</a></p>
</footer>
</div>
</body>
</html>