-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 2.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Amanda Bassett</title>
</head>
<body>
<a href="#main" class="jump">Jump to Content</a>
<header>
<nav class="top-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="about.html">About</a></li>
<li><a href="docs/portfolio_resume.pdf" target="_blank">Resume</a></li>
<!-- <li><a href="contact.html">Contact</a></li> -->
</ul>
</nav>
<h1>Amanda Bassett</h1>
<h2 id="aspiring">Aspiring UX Designer with a <br />passion for storytelling.</h2>
</header>
<main id="main">
<!--Add content here-->
<div class="index_container1">
<div class="index_item1">
<a href="careconnect_prototype.html">
<img src="imgs/index_photo1.jpg" alt="Elderly holding hands">
</a>
<h2>CareConnect Prototype</h2>
<p>UX Design</p>
</div>
<div class="index_item2">
<a href="iia.html">
<img src="imgs/index_photo2.jpg" alt="Grocery market">
</a>
<h2>Innovation in Action</h2>
<p>UX Design & Research</p>
</div>
</div>
<div class="index_container2">
<div class="index_item3">
<a href="polaris.html">
<img src="imgs/index_photo3.jpg" alt="Mountains">
</a>
<h2>Polaris Design Jam</h2>
<p>Design Thinking</p>
</div>
<div class="index_item4">
<a href="university_consulting.html">
<img src="imgs/index_photo4.jpg" alt="Sticky notes">
</a>
<h2>BlueSolution</h2>
<p>UX Research & Consulting</p>
</div>
</div>
</main>
<footer>
<div class="icons">
<a href="mailto:[email protected]" aria-label="Email to [email protected]" class="email-icon">
<i aria-hidden="true" class="fa fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/amanda-bassett-62b06887" aria-label="LinkedIn" target="_blank" class="linkedin">
<i aria-hidden="true" class="fab fa-linkedin-in"></i>
</a>
</div>
<span class="copyright">
Hand-coded with ♥ <br />© Amanda Bassett 2019
</span>
</footer>
</body>
</html>