-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.4 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.4 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
<html lang="en">
<head>
<title>Will Conboy</title>
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
<header>
<ul>
<li><a href="index.html" aria-current="true" id="current">Home</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="bio.html">Bio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<main>
<section id="personal-info">
<img src = "images/headshot.JPG" alt="Headshot of Will Conboy" class="headshot-image">
<h1>Hi, I'm Will Conboy.</h1>
</section>
<hr>
<h2>Projects</h2>
<section class="projects">
<div id="project-half">
<a href="project.html"> <img src="images/ERA-diagram-cropped.png" alt="Screenshot of diagram showing the flow of information within the project" class="era-image"> </a>
</div>
<div id="project-half">
<a href="project.html"><img src="images/olympics.JPG" alt="Dashboard showing the 1980 Olympics data. Russia is clearly winning overall." class="olympics-image"></a>
</div>
</section>
<hr>
</main>
</html>