-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.html
More file actions
41 lines (33 loc) · 1.95 KB
/
Project.html
File metadata and controls
41 lines (33 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<title>
Business Day Optimizer
</title>
<link rel="stylesheet" href="ProjectStyle.css">
<script src="ProjectJS.js"></script>
</head>
<body>
<br>
<h1>
Business Day Optimizer
</h1>
<h3>
Make your day less repetitive by using this simple program
</h3>
<br>
<div id="overlay">
<div id="popup">
<br><br>
<h2>Context Behind this Project</h2>
<div>
<p>This program was created as a part of the capstone project that I was assigned to do as a part of my placement with ExxonMobil with the techNL High School Tech Immersion Program. For our capstone project, we were assigned to implement artificial intelligence in an area of our lives that would benefit from its presence. This web-browser-based application is meant to optimize the day of the user by eliminating the need for users to partake in time-consuming repetitive tasks. The front-end development for the program was written in HTML and was styled using CSS. The client script was entirely done using the language JavaScript. Ollama was also installed onto the local server a 2B perimeter model of Google Gemma could be run on the machine. The files for Google Gemma were then installed onto the machine prior to the release of this application. This tool is meant to save time for people working in offices so they can do things that make a difference for their companies.</p><br>
</div>
<input type="button" class="buttons" value="Back to Main Menu" onclick="exitWindow();"/>
</div>
</div>
<input type="button" class="buttons" value="Go to Apps" onclick="proceed();"/>
<br>
<input type="button" class="buttons" value="Explanation" onclick="smallWindow();"/>
</body>
</html>