-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
executable file
·129 lines (115 loc) · 4.32 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Khandice's Portfolio</title>
<script src="https://kit.fontawesome.com/197f5b9e01.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="../styles/stylesheet.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="portfolio.html">Projects</a></li>
<li><a class="nav-link" href="about.html">About</a></li>
<li><a class="nav-link" href="index.html">Home</a></li>
</ul>
</nav>
</header>
<h4 id="projects">These are some projects I've completed while at my time at Ada. Projects are completed with a focus
on RESTful APIs and OOP principles.</h4>
<section id="portfolio-grid">
<div class="portfolio-grid-item">
<b>NewLeaf Trading App</b>
<p>Given 3 weeks to learn a new programming language and complete a product life cycle from conception to
delivery.</p>
<ul class="links">
<li><a href="https://github.com/khandices/NewLeaf" target="_blank">GitHub</a></li>
<li><a
href="https://www.canva.com/design/DAE6ggtTodA/bvEkWOHKnTiMg_Z3o4AHmw/view?utm_content=DAE6ggtTodA&utm_campaign=designshare&utm_medium=link&utm_source=publishpresent"
target="_blank">View Project</a></li>
</ul>
<ul class="tech-stack">
<li>
<e class="tech-yellow"> ❊ </e>Swift
</li>
<li>
<e class="tech-yellow"> ❊ </e>SwiftUI
</li>
<li>
<e class="tech-yellow"> ❊ </e>Google Firebase
</li>
</ul>
</div>
<div class="portfolio-grid-item">
<b>Inspiration Board</b>
<p>Collaborated in a team setting to create a full-stack web application. Utilized React props to send & receive
data interacting with back-end. Used data received to pass thorugh callbacks to update state.</p>
<ul class="links">
<li><a href="https://github.com/khandices/back-end-inspiration-board" target="_blank">GitHub</a></li>
<li><a href="https://kardashians-front-end.herokuapp.com/" target="_blank">View Project</a></li>
</ul>
<ul class="tech-stack">
<li>
<e class="tech-yellow"> ❊ </e>Python
</li>
<li>
<e class="tech-yellow"> ❊ </e>Flask
</li>
<li>
<e class="tech-yellow"> ❊ </e>React/JS
</li>
<li>
<e class="tech-yellow"> ❊ </e>HTML5/CSS3
</li>
</ul>
</div>
<div class="portfolio-grid-item">
<b>Task List</b>
<p>Demonstrates the request-response cycle. I utilized Flask to make route calls to an external API.</p>
<ul class="links">
<li><a href="https://github.com/khandices/task-list-api" target="_blank">GitHub</a></li>
</ul>
<ul class="tech-stack">
<li>
<e class="tech-yellow"> ❊ </e>Python
</li>
<li>
<e class="tech-yellow"> ❊ </e>Flask
</li>
<li>
<e class="tech-yellow"> ❊ </e>PostgresSQL
</li>
</ul>
</div>
<div class="portfolio-grid-item">
<b>Leaves of Paradise Landing Page</b>
<ul class="links">
<li><a href="https://github.com/khandices/FCC-Product-Landing-Page" target="_blank">GitHub</a></li>
<li><a href="leaves-of-paradise.html" target="_blank">View Project</a></li>
</ul>
<ul class="tech-stack">
<li>
<e class="tech-yellow"> ❊ </e>HTML5
</li>
<li>
<e class="tech-yellow"> ❊ </e>CSS3
</li>
</ul>
</div>
</section>
<footer>
<div class="links">
<a class="github-link" href="https://github.com/khandices" target="_blank"><i class="fa-brands fa-github"></i></a>
<a class="linkedin-link" href="https://www.linkedin.com/in/khandice-schuhmann/" target="_blank"><i
class="fa-brands fa-linkedin"> </i></a>
</div>
<h5>Made with ♥ Khandice Schuhmann © 2023</h5>
</footer>
</body>
</html>