-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
67 lines (65 loc) · 3.85 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CWDIII - UI Design</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1, width=device-width">
<link rel="stylesheet" href="css/application.css" type="text/css" media="screen" />
<link href="https://fonts.googleapis.com/css?family=Rubik:400,400i,500" rel="stylesheet">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132141-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-132141-4');
</script>
<script src="https://kit.fontawesome.com/7ebd325f88.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="wrapper">
<header>
<div class="name">
<span>Carl W. DeCaire III</span>
<span>Design Lead + Creative Direction</span>
</div>
<div class="contact">
<span><a href="tel:1-614-352-3850">+1 614-352-3850</a></span>
<span><a href="mailto:[email protected]?subject=Hey there!">[email protected]</a></span>
</div>
<nav>
<ul>
<li><a href="./index.html" class="">Home</a></li>
<li><a href="./about.html" class="selected">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="about">
<article>
<div class="profileimage"><img src="./imgs/cdecaire.png"></div>
<h1>I'm an explorer, photographer, cat & dog lover, bicyclist, skateboarder, snowboarder, video gamer <span class="dash">—</span> a design leader.</h1>
<div class="story">
<p>I'm a seasoned design leader with a track record of collaborating with incredible brands like HP, Sherwin Williams, Shaw Floors, the Ohio State University, and many others throughout my career. I'm currently focused on building better user experiences in web3 at Dialect, where I lead the charge in creating the best messaging app featuring smart messages and NFT stickers.</p>
<p>Before my current role, I had the privilege of leading the design team at Metaplex. I played a pivotal role in shaping the Metaplex NFT Standard on Solana and crafting immersive experiences for creators and collectors alike. Before that, I honed my craft at Big Cartel, where I helped empower artists to build successful businesses around their craft and sell their merchandise online.</p>
<p>As a designer, I'm deeply passionate about my work but prioritize a healthy work-life balance. When I'm not designing, I enjoy exploring new hobbies, such as handcrafting leather goods or going on long bike rides. You can often find me outdoors in the summer, camping, hiking with friends, or simply enjoying a cold beer on a patio. And when the weather turns colder, I grow out my beard while hitting the slopes on my snowboard.</p>
<p><a href="./imgs/cdecaire_resume.pdf">Download Resume.</a></p>
</div>
<ul class="social">
<li class="twitter"><a href="http://twitter.com/empirikal"><i class="fa-brands fa-square-twitter"></i></a></li>
<li class="instagram"><a href="http://instagram.com/empirikal"><i class="fa-brands fa-square-instagram"></i></a></li>
<li class="dribbble"><a href="https://dribbble.com/cdecaire"><i class="fa-brands fa-square-dribbble"></i></a></li>
</ul>
</article>
</section>
</main>
<footer>
<strong>No templates, made with simple HTML5 & CSS3</strong>
<cite>© Copyright <script type="text/javascript">document.write(new Date().getFullYear());</script> Carl DeCaire. All Rights Reserved.</cite>
</footer>
</div>
</body>
</html>