-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
191 lines (176 loc) · 5.76 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
<!DOCTYPE html>
<!--
Student Name: Bernice Templeman
File Name: index.html
Date: 10/07/204
-->
<html lang="en">
<head>
<title>Portfolio: WEB-335 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">WEB 335: MongoDB and Python </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>
WEB 335 Projects
</h2>
<div class="centered">
<section class="cards">
<article class="card">
<img style="" src="./images/week2-output.png" alt="Quote" />
<h3>week_2: Quote</h3>
<p>Description: This file outputs a quote and gives credit to the originating author.</p>
<p>Technologies: Python</p>
<p>Learned: Python print</p>
<a
href="https://github.com/bernicetempleman1/web-335"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img
style=""
src="./images/lemonadeStand.png"
alt="Lemonade Stand"
/>
<h3>week_3: Lemonade Stand</h3>
<p>Description: This program uses the print function to output the cost and profit calculations.</p>
<p>Technologies: Python</p>
<p>Learned: Define functions to output variables and calculations</p>
<a
href="https://github.com/bernicetempleman1/web-335"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/mongoDBscript.png" alt="MongoDB Shell" />
<h3>week_4: MongoDB Shell Script</h3>
<p>Description: MongoDB Shell Scripts for the users collection</p>
<p>Technologies:MongoDB shell</p>
<p>Learned: Configure MongoDB database, install shell, run scripts</p>
<a
href="https://github.com/bernicetempleman1/web-335"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img style="" src="./images/MongoDB-projections.png" alt="MongoDB projections" />
<h3>week_5: MongoDB projections</h3>
<p>Description: MongoDB operations</p>
<p>Technologies: MongoDB</p>
<p>Learned: MongoDB projections</p>
<a
href="https://github.com/bernicetempleman1/web-335"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
<article class="card">
<img
style=""
src="./images/aggregate-queries.png"
alt="MongoDB Aggregate Queries"
/>
<h3>week_6: MongoDB Shell Scripts for aggregate queries</h3>
<p>Description: MongoDB Shell Scripts for the houses and students collections.</p>
<p>Technologies:MongoDB</p>
<p>Learned: MongoDB Aggregate Queries</p>
<a
href="https://github.com/bernicetempleman1/web-335"
class="button-link"
target="_blank"
>GitHub repo</a>
</article>
</section>
</div>
</main>
<!-- Use the footer area to add webpage footer content-->
<footer>
<p>© Copyright 2024. All Rights Reserved.</p>
<p>
<a href="mailto:[email protected]"
>
</p>
</footer>
</div>
</body>
</html>