-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
82 lines (82 loc) · 3.21 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html"> Luke Waltz </a>
</h1>
<ul class="nav-list">
<li><a href="index.html"><div class="nav-button">Home</div></a></li>
<li><a href="blog.html"><div class="nav-button">Blog</div></a></li>
<li><a href="portfolio.html"><div class="nav-button">Portfolio</div></a></li>
<li><a href="resume.html"><div class="nav-button">Resume</div></a></li>
<li><a href="contact.html"><div class="nav-button">Contact</div></a></li>
</ul>
</nav>
<main>
<h1 class="page-title">My Portfolio</h1>
<div class="project">
<div class="project-details">
<h2 class="project-name">My Personal Website</h2>
<img
src="images/websitecreenshot.png"
alt="personal website screenshot"
/>
<p class="project-description">
I made a personal website using guidance from the Hack4Impact
starter pack. This was my first real HTML / CSS project and I am
happy with what I created in a mere three days. I intend to continue
to contribute to and improve upon this project consistently.
</p>
<div class="button">
<a href="https://github.com/lukewaltz/lukewaltz.github.io"
>View Repository</a
>
</div>
</div>
<div class="project">
<div class="project-details">
<h2 class="project-name">Wellkit Landing Page</h2>
<img
src="images/wellkitpage_screenshot.png"
alt="wellkit landing page screenshot"
/>
<p class="project-description">
My first project for my internship at OpenPark was to develop a
landing page for OpenPark's new product, the WellKit. To achieve
this I used Framer.com, a web development tool powered by AI. I
collaborated closely with the marketing team. I also worked with
the CEO of OpenPark, Jared Zabel, as well as UX/UI intern Laryssa
Molina. This will be the first of many landing pages I develop for
OpenPark, and as my software engineering skills continue to
improve I hope to integrate more of my own code into the framework
that Framer.com assists me in creating.
</p>
<div class="button-row">
<div class="button">
<a href="https://www.openpark.us/wellkit">View Page</a>
</div>
<div class="button">
<a href="https://www.linkedin.com/in/parkfounder/"
>Jared's Linkedin</a
>
</div>
<div class="button">
<a href="https://www.linkedin.com/in/laryssa-molina/"
>Laryssa's Linkedin</a
>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
© 2023 Luke Waltz's Personal Website | All Rights Reserved
</footer>
</body>
</html>