-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (33 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIY Landing Page</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script defer src="script.js"></script>
<!-- Favicons -->
<link rel="shortcut icon" type="image/png" href="favicon.png">
<!-- Fonts -->
<link rel="stylesheet" href="https://use.typekit.net/eww1gxm.css">
</head>
<body>
<!-- Image -->
<img src="me.jpg">
<!-- Name -->
<h2>Cate Carpenter</h2>
<p>
Hi my name is Cate and I am a graphic designer based in Spokane, Washington. I received my Bachelor of Design in Visual Communication Design with a certificate in UX/UI from Eastern Washington University. My strengths are branding, layout, and UX design. My principles such as transparency, accountability, and organization are implemented into all of my projects.
</p>
<!-- links -->
<nav>
<a href="https://cc-portfolio-site.netlify.app/">Portfolio</a>
<a href="https://www.behance.net/catecarpenter">Behance</a>
<a href="https://www.linkedin.com/in/cate-carpenter">LinkedIn</a>
<a href="https://www.tiktok.com/@groovygal.cc">TikTok</a>
<a href="https://www.instagram.com/designs.cc_/">Instagram</a>
</nav>
</body>
</html>