-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstaDelivery-project.html
216 lines (169 loc) · 7.93 KB
/
instaDelivery-project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description" content="Evie May's Portfolio">
<meta name="keywords" content="minimal, portfolio, agency template, html template">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Evie May - Projects</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- MAIN CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- PRE LOADER -->
<div class="preloader">
<div class="spinner">
<span class="sk-inner-circle"></span>
</div>
</div>
<!-- MENU -->
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<!-- NAVBAR HEADER -->
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<!-- lOGO -->
<a href="index.html" class="navbar-brand">Evie May</a>
</div>
<!-- MENU LINKS -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Work</a></li>
<li><a href="about.html">About</a></li>
<li><a href="Website-Resume.pdf">Resume</a></li>
<li><a href="contact.html">Let's talk</a></li>
</ul>
</div>
</div>
</div>
<!-- HEADER -->
<section id="header">
<div class="container">
<div class="row">
<div>
<h1 class="about-info">InstaDelivery Website</h1>
</div>
</div>
</div>
</section>
<!-- PROJECT DETAIL -->
<section id="project-detail">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<video width="100%" height="100%" controls>
<source src="photos/videos/InstaDelivery-Tour.mov" type="video/mp4">
<source src="photos/videos/InstaDelivery-Tour.mov" type="video/ogg">
Your browser does not support the video tag.
</video>
<div class="project-detail-text">
<h2>Overview</h2>
<p>InstaDelivery is a way for grocery stores to safely manage and deliver goods during the age
of COVID-19.
Users can manage their store database by reading, updating, deleting, and inserting new
products, customers,
deliverers, orders, and purchase methods. This project was assigned to me for my
Introduction to Databases course.
The goal of this project was to implement all the database-related skills learned throughout
the course in a web based UI.
</p>
</div>
<div class="project-detail-image">
<img src="images/project-image.jpg" class="img-responsive" alt="">
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="col-md-offset-1 col-md-4 col-sm-6">
<div class="project-detail-info">
<p>Github</p>
<h3><a href="https://github.com/eviemayy/InstaDelivery">InstaDelivery</a>
</h3>
</div>
</div>
<div class="col-md-4 col-sm-3">
<div class="project-detail-info">
<p>My Roles</p>
<h3>Database Design</h3>
<h3>Front-end development</h3>
</div>
</div>
<div class="col-md-3 col-sm-3">
<div class="project-detail-info">
<p>Technology</p>
<h3>HTML</h3>
<h3>CSS</h3>
<h3>JavaScript</h3>
<h3>SQL</h3>
<h3>Heroku</h3>
</div>
</div>
</div>
<div class="project-detail-text">
<h2>Roles and Responsibilites</h2>
<p>For this project, I worked with a partner to develop a website driven by a database backend. The
website has all CRUD functionality implemented. My partner worked mostly on the back end,
creating a server to make API calls to. I worked mostly on the front end using HTML, CSS, and
Javascript to call the API and display the database data to the user.
</p>
</div>
<div class="project-detail-text">
<h2>Tools Used</h2>
<p>For this project we used HTML, CSS, and Javascript for the front end as that is what both my team
member and I were most familiar with. To host the database we used Heroku. We used the class
provided MariaDB server to host our database and used mySQL to make calls to our database.
</p>
</div>
<div class="project-detail-text">
<h2>Learning Outcomes</h2>
<p>This project was valuable for learning how to design and implement databases. I learned how to
use SQL to make simple and complex queries. In addition to this, it also gave me more practice
with using javascript to make API calls to display information to users. I feel a lot more
comfortable with being able to do this now.
</p>
</div>
<div class="col-md-6 col-sm-6">
<img src="images/project-image.jpg" class="img-responsive" alt="">
</div>
<div class="col-md-6 col-sm-6">
<img src="images/project-image.jpg" class="img-responsive" alt="">
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-6">
<h2>Evie May</h2>
</div>
<div class="col-md-3 col-sm-6">
<div class="footer-info">
<h4>Want to work with me?</h4>
<p><a href="mailto:eviemay98@gmail.com">eviemay98@gmail.com</a></p>
</div>
</div>
<div class="col-md-4 col-sm-12">
<ul class="social-icon">
<li><a href="https://github.com/eviemayy" class="fa fa-github"></a></li>
<li><a href="https://www.linkedin.com/in/evie-may-953511162/" class="fa fa-linkedin-square"></a>
</li>
<li><a href="https://twitter.com/maryevelynmay" class="fa fa-twitter"></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>