-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal-project.html
More file actions
54 lines (54 loc) · 2.83 KB
/
personal-project.html
File metadata and controls
54 lines (54 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/styles.css">
<title>Personal Projects</title>
</head>
<body>
<div>
<header>
<nav>
<a href="personal-project.html">Personal Projects</a>
<a href="index.html">
<img src="images/porfolio_logo.png" alt="The logo of the website" class="logo">
</a>
<a href="work-experience.html">Work Expereinces</a>
</nav>
</header>
<main>
<div class="parallax colorandcenter">
<div>
<h1 id="personalheadline">Personal Projects</h1>
</div>
<div class="colorandcenter personal_size">
My projects have stemmed primarily from the assignments that I have received in class that I have grown past the expected
requirements. The first one of these was a program that was built to take an input and deliver an output in response.
This was utilized to make an ‘Adventure Game’. The original standard could be completed within just a few lines of programming,
but over the next few weeks I turned it into a several hundred line program, with extra features to check input answers and a
test delay response to make the program more immersive. This required a lot of extra research, and a lot of extra time and work.
</div>
</div>
<div class="parallax_two colorandcenter">
<div class="colorandcenter personal_size">
My other big project that I am working on right now is a website that I am creating to combine database creation and
manipulation, python background, and web design development. The end goal is to have a website that will allow a user to
register for an account or sign in, and allow them to create a catalog of cards used in a popular game. This project is outside
of the scope of my current classes, so I am taking it on with a ton of research and a lot of extra work. I am loving the process
and the learning that is happening because of it.
</div>
</div>
</main>
<footer>
<div class="footer_items">
<h2 id="github">GitHub Link</h2>
<a href="https://github.com/lincolnhuls/portfolio" id="github_link">Click Here</a>
<a href="site-plan.html" id="siteplan">Site Plan</a>
<h2 id="workemail">Work Email</h2>
<p id="email">hulsl------@-----.com</p>
</div>
</footer>
</div>
</body>
</html>