-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
153 lines (130 loc) · 7.32 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<html lang="en"><head>
<meta charset="utf-8">
<title>DANIEL LEE AUSTIN</title>
<link rel="icon" type="image/x-icon" href="/Website Assets/Favicon/Favicon.ico">
<link rel="apple-touch-icon" href="/Website Assets/Favicon/apple-touch-icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Daniel Austin, ASTNDSGN, and IMDANIELAUSTIN Is A Multi-Disciplinary Brand Designer, Product Conceptual Artist, Graphic Designer, and Product Designer Based In The Los Angeles, California Area With An Interest In FinTech/Financial Technology, Consumer Product, And Environmental Sustainability.">
<meta property="og:title" content="DANIEL LEE AUSTIN">
<meta property="og:image" content="/Website Assets/iMessagePreview1.png">
<link rel="stylesheet" href="assets/css/style.css">
<noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript>
</head>
<body>
<header>
<nav class="">
<div class="nav-content">
<!-- logo -->
<a href="/" class="logo">
<span class="symbol">
<img src="/images/ASTNDSGN Logomark Short Animation Alpha Loop Once.gif" alt="" width="30" height="30" style="display: block;">
</span>
</a>
<!-- navigation -->
<div class="nav-icon">
<div class="bar one"></div>
<div class="bar two"></div>
</div>
<!-- naviagtion links -->
<div class="nav-links">
<a href="/About"><button>RÉSUMÉ</button></a>
<a href="/writings"><button>WRITINGS</button></a>
<a href="/appointment"><button>BOOK CONSULTATION</button></a>
<a><button id="copyEmailBtn">EMAIL ME</button></a>
</div>
</div>
</nav>
</header>
<!-- masthead -->
<main>
<!-- Various Content Sections -->
<h1>Daniel Austin</h1><br>
<pre>Los Angeles Metro Area, CA | <a href="tel:6268382231" target="_blank"><span class="label">(626) 838-2231</span></a>
</pre><br>
<h1>ABOUT</h1><br>
<pre>As a designer with formal education in design and expertise in typography, I bring a unique blend of creativity and precision to product teams. My retail experience has fostered a deep appreciation for product solutions and customer satisfaction. By empathizing with consumer needs, I strive to create design solutions that empower and enhance communities.</pre>
<br>
<h1>EXPERIENCE</h1><br>
<h2>The Bitcoin Layer, 2024 — Content Manager and Design Intern<br></h2>
<pre>As the Content Manager and Designer Intern at The Bitcoin Layer, I have the unique opportunity to immerse myself in the Bitcoin startup culture and work closely with the founder and creative director. My role involve creating engaging Bitcoin-related content, including tweets with custom graphics and short animations for social media. Through this internship, I will exercise my skills in social media management, and graphic design, while deepening my understanding of Bitcoin and its online ecosystem.</pre>
<br>
<h2>Snap Inc., 2021 — Snap Design Scholar<br></h2>
<pre>Chosen as one of 15 design scholars from a competitive pool of designers within the Los Angeles Metropolitan Area, I honed my creative expertise in typography, photo manipulation, and illustration. Additionally, I developed stronger communication skills when collaborating across disciplines and by learning new tools and integrating them into my creative process, I was able to improve my efficiency and the effectiveness of my concepts.</pre>
<br>
<h2>Sole Folks at Leimert Park, 2020 — Graphic Designer II<br></h2>
<pre>As 2020 seemed to be the year of historical events, a new academic endeavore at ArtCenter College of Design allowed my cohorts and I to collaborate with local partners to support and empower Black and minority-owned companies and brands throughout Los Angeles. The course was structured like a design consultancy, with students fulfilling creative roles and providing design services and deliverables – including brand and product strategy, brand identity, product design and environmental design services.</pre>
<br>
<h1>EDUCATION</h1><br>
<pre>Arlington High School, 2016 — High School Diploma <br>
California College of the Arts, 2017 — Interaction Design (Product Track)<br>
ArtCenter College of Design, Pending — Graphic Design (Brand/Print Design Track)<br>
</pre>
<br>
</main>
<button id="myBtn" title="Back to Top" style="padding: 8px; margin: 8px;">Back to Top</button>
<!-- FOOTER -->
<footer>
<div class="footer">
<pre>COPYRIGHT © 2024 DANIEL LEE AUSTIN (SP). All rights reserved.</pre>
<a href="/privacy-policy">Privacy Policy</a>
<a href="/sitemap">Sitemap</a>
<a href="/terms-of-service">Terms of Use</a>
</div>
</footer>
<!-- Hidden input to hold the email address -->
<input type="text" value="[email protected]" id="emailAddress" style="position: absolute; left: -9999px;">
<script>
document.addEventListener("DOMContentLoaded", function() {
// Back to Top button
const backToTopButton = document.getElementById("myBtn");
// Show the button when scrolling down 20px
window.onscroll = function() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
backToTopButton.style.display = "block";
} else {
backToTopButton.style.display = "none";
}
};
// Scroll to the top when the button is clicked
backToTopButton.onclick = function() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
};
// Copy email to clipboard
const copyEmailBtn = document.getElementById('copyEmailBtn');
const emailAddress = document.getElementById("emailAddress");
if (copyEmailBtn && emailAddress) {
copyEmailBtn.addEventListener('click', function() {
emailAddress.select();
emailAddress.setSelectionRange(0, 99999); // For mobile devices
document.execCommand("copy");
// Alert the copied text (optional)
alert("Copied the email: " + emailAddress.value);
});
}
// Nav
const navIcon = document.querySelector(".nav-icon");
const nav = document.querySelector("nav");
if (navIcon && nav) {
navIcon.onclick = function () {
nav.classList.toggle('show');
};
}
// Filter Posts
function filterPosts(tag) {
const posts = document.querySelectorAll('.blog-post');
posts.forEach(post => {
const tags = post.getAttribute('data-tags').split(', ');
if (tag === 'all' || tags.includes(tag)) {
post.style.display = 'block';
} else {
post.style.display = 'none';
}
});
}
window.filterPosts = filterPosts; // Expose the function to global scope if needed
});
</script>
<script src="scripts.js"></script>
</body>
</html>