-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 2.85 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>sjbar03's Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>sjbar03's Dev Blog</h1>
<nav>
<a class="nav_button" href="About/about_me.html">About</a>
<a class="nav_button" href="Workflow/workflow.html">Workflow</a>
<a class="nav_button" href="Projects/projects.html">Projects</a>
<a class="nav_button" href="Blog/blog.html">Blog</a>
</nav>
</header>
<main class="page">
<section class="page_content">
<div class="working_header">
<h2 class="working_prompt">Currently working on -> </h2>
<h2 class="working_empha"> PillPal</h2>
</div>
<div class="container">
<div class="text">
<p> PillPal is a pharmacy study tool that I am developing for my
girlfriend, Pearl. It's written in Python, utlilizing the
tkinter library and the OpenFDA API for drug information.
Check it out on
<a href="https://github.com/sjbar03/PillPal">GitHub</a>.
</p>
</div>
<div class="image">
<img src="perc.png" width="100">
</div>
</section>
<section class="contact_aside">
<h2 class="contact-header">Contact me</h2>
<h3><img src="email.png" width="20px">  <a target="_blank"
class="contact_button"
href="mailto:
[email protected]">[email protected]</a></h3>
<h3><img src="github.png" width="20px">  <a target="_blank" class="contact_button"
href="https://github.com/sjbar03">sjbar03</a></h3>
<h3><img src="linkedin.png" width="20px">  <a target="_blank" class="contact_button"
href="https://www.linkedin.com/in/stephenbarlett">stephenbarlett</a></h3>
<h3><img src="facebook.png" width="20px">  <a target="_blank" class="contact_button"
href="https://www.facebook.com/stephen.bar.14/">stephen.bar.14</a></h3>
<h3><img src="instagram.png" width="20px">  <a target="_blank" class="contact_button"
href="https://www.instagram.com/stephenbarlett/">stephenbarlett</a></h3>
</section>
</main>
<footer>
<h1>Copyright Stephen Barlett, 2024. All rights reserved.</h1>
</footer>
</body>
</html>