-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
134 lines (126 loc) · 5.26 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/Users/cassiehumann/Desktop/uxui18_/style.css>
<script src="https://kit.fontawesome.com/70a3dfec4d.js" crossorigin="anonymous"></script>
<title>Cassie Humann | UX/UI Designer</title>
</head>
<body>
<nav>
<div class="logo">
<hr>
<p><a href="/">CH</a></p>
</div>
<ul class="links">
<li><a href="#">Work</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Connect</a></li>
</ul>
</nav>
<div class="hero">
<div class="left">
<h4>Cassie Humann <br>
UX/UI Designer</h4>
<hr>
<h5 class="subtitle">
Using empathy, curiosity, and creativity to design enjoyable digital experiences for all users.
</h5>
<ul class="socialmedia">
<li>
<a href="https://linkedin.com/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/">
<i class="fab fa-behance-square"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
<div class="right">
<img src="./assets/girl-laptop.svg" alt="">
</div>
<a href="#projects"><img src="./assets/chevron-down.svg" id="chevron-down"></i></a>
</div>
<div class="section featured-projects" id="projects">
<h3>Featured projects</h3>
<div class="project">
<div class="left">
<img src="./assets/importwork.png" alt="">
</div>
<div class="right">
<h4 class="project-title">ImportWork</h4>
<h5 class="project-subtitle">UX/UI Designer</h5>
<p>A mobile app that allows remotely working individuals to locate suitable working locations in unfaimilar cities in order to confidently explore new cultures, while being successful in their career.</p>
<br><br>
<a href="#">View Case Study</a>
</div>
</div>
<div class="project odd">
<div class="left">
<h4 class="project-title">Denver Art Society Redesign</h4>
<h5 class="project-subtitle">UX/UI Designer</h5>
<p>The Denver Art Society is a nonprofit gallery with a mission to host a creative communty. The goal was to develop a straightfoward path for users to find classes and opportunities to get involved.</p>
<br><br>
<a href="#">View Case Study</a>
</div>
<div class="right">
<img src="./assets/denver-redesign.png" alt="">
</div>
</div>
<div class="project">
<div class="left">
<img src="./assets/environmental-agency.png" alt="">
</div>
<div class="right">
<h4 class="project-title">Environmental Protection Agency Redesign</h4>
<h5 class="project-subtitle">UX/UI Designer</h5>
<p>The Environmental Protection Agency is responsible for the protection of the environment and human health in the United States. The goal was to redesign the website by simplifying navigation, and creating design consistency for a positive user experience.</p>
<br><br>
<a href="#">View Case Study</a>
</div>
</div>
</div>
<div class="contact section">
<h3>Let's connect!</h3>
<p>Whether you’d like to work together, have any questions, or just want to chat - I’d love to hear from you!
<br><br>
Please fill out the form below.</p>
<form action="submit">
<input type="text" name="name" id="name" placeholder="Name">
<input type="email" name="email" id="email" placeholder="Email">
<textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
<button type="submit">Send</button>
</form>
</div>
<footer>
<div class="left">
<a href="mailto:[email protected]">[email protected]</a>
<p><i class="far fa-copyright"></i> 2021 Cassandra Humann.</p>
</div>
<ul class="socialmedia">
<li>
<a href="https://linkedin.com/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/">
<i class="fab fa-behance-square"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</footer>
</body>
</html>