-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<title>UX Portfolio</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<nav>
<div class="left-nav">
<div class="logo">
<img src="images/Logo.png" alt="My Logo">
</div>
<div class="tagline">Micah Samter is a UX Researcher based in Atlanta, Georgia.</div>
</div>
<div class="right-nav">
<div class="nav-item">Projects</div>
<div class="nav-item">About</div>
<div class="nav-item">Contact</div>
</div>
</nav>
<!-- Hero Image -->
<section>
<div class="heroImg">
<div class="micahContainer">
<img src="images/micah.jpg" alt="Micah Samter">
<div class="square"></div>
<h1>Key Skills</h1>
<p>+ Skill 1</p>
<p>+ Skill 2</p>
<p>+ Skill 3</p>
<p>+ Skill 4</p>
<p>+ Skill 5</p>
<p>+ Skill 6</p>
</div>
<div class="content">
<h1>HI, I'm Micah...</h1>
<p>My passion for UX design lies in creating meaningful and delightful experiences for users. I believe that design should be intuitive and accessible and that it should solve real problems for people. My interest in UX research stems from the understanding that a deep knowledge of user needs and behaviors is essential to achieving this goal.</p>
<button>Download Resume</button>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<ul class="footer">
<li><img src="images/linkedin.png" alt="LinkedIn" title="LinkedIn"></li>
<li><img src="images/behance.png" alt="Behance" title="Behance"></li>
<li><img src="images/github.png" alt="GitHub" title="GitHub"></li>
</ul>
<p>© 2023 Micah Samter</p>
</footer>
</body>
</html>