-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>Amanda Bassett</title>
</head>
<body>
<a href="#main">Jump to Content</a>
<header>
<nav>
<ul>
<!--Main menu spanning top - will link to projects via pictures-->
<li><a href="index.html" class="current">Work</a></li>
<li><a href="docs/portfolio_resume.pdf" target="_blank">Resume</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<h1>Amanda Bassett</h1>
</header>
<main id="main">
<!--Add content here-->
<a href="careconnect_prototype.html">
<img src="imgs/index_photo1.jpg" alt="Elderly holding hands">
</a>
<p>CareConnect Prototype</p>
<a href="iia.html">
<img src="imgs/index_photo2.jpg" alt="Grocery market">
</a>
<p>Innovation in Action</p>
<a href="polaris.html">
<img src="imgs/index_photo3.jpg" alt="Mountains">
</a>
<p>Polaris Design Jam</p>
<a href="university_consulting.html">
<img src="imgs/index_photo4.jpg" alt="Sticky notes">
</a>
<p>University Consulting</p>
</main>
<footer>
© Amanda Bassett 2019
</footer>
</body>
</html>