-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
161 lines (161 loc) · 6.04 KB
/
about.html
File metadata and controls
161 lines (161 loc) · 6.04 KB
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
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Me - Devashri</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="p-4">
<div class="container d-flex justify-content-between align-items-center">
<div class="logo">DS.</div>
<nav>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item"><a class="nav-link" href="#">Resume</a></li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="container mt-5">
<div class="row">
<div class="col-md-8">
<h1>About Me</h1>
<p>
Hey there, I'm Devashri – a UI/UX Designer and Content Creator based
in Brisbane. I am passionate about creating meaningful and impactful
designs, as well as connecting with people and building a community
through content creation.
</p>
<p>
I'm a graduate of Montclair State University with a B.S. in Computer
Science. Throughout my college experience, I discovered my love for
creating digital experiences personally through content creation,
and professionally through UI/UX.
</p>
<p>
Currently, I'm serving as the Design Lead for Adspace Agency, where
I've led end-to-end UI/UX design projects for a variety of
e-commerce brands. My primary focus is on creating visually
appealing and intuitive experiences that deliver exceptional
business results.
</p>
<p>
Outside of design, I'm an avid basketball fan and content creator
with a combined following of over 20,000 on various platforms
including Twitch, YouTube, and TikTok. My journey as a content
creator has presented the opportunity to engage in freelance graphic
design work, allowing me to connect with other creators as well! As
the popularity of content creation continues to rise each year, I'm
always striving to push the boundaries and find fresh and engaging
ways to connect with my audience.
</p>
</div>
<div class="col-md-4 text-center">
<img
src="images/profile.jpg"
class="img-fluid rounded-circle mb-3"
alt="Devashri"
/>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<h2>Education</h2>
<hr />
<p>Montclair State University</p>
<p>• Bachelor of Science in Computer Science • May 2021</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<h2>Experience</h2>
<hr />
<p>Adspace Agency</p>
<p>
• Design Lead | UI/UX, Graphic Design, & Creative Direction
• April 2022 - Present
</p>
<p>
• UI/UX Designer & Graphic Designer • November 2021 -
April 2022
</p>
<p>Max Level Designs</p>
<p>• Freelance Graphic Designer • May 2021 - Present</p>
<p>Marra's Market</p>
<p>• Front-End Manager • October 2017 - March 2020</p>
</div>
</div>
<div class="row mt-5">
<div class="col-md-12">
<h2>Skills</h2>
<hr />
<p>General</p>
<ul>
<li>UI/UX Design</li>
<li>Graphic Design</li>
<li>Creative Direction</li>
<li>Web Design</li>
<li>Brand Strategy</li>
<li>User Flows</li>
<li>High-fidelity Prototyping</li>
<li>Developer Hand-off</li>
<li>User Testing</li>
<li>Cross-platform Design (Mobile, Desktop)</li>
<li>E-Commerce Platforms</li>
<li>Email Marketing</li>
<li>Conversion Optimization</li>
<li>Project Management</li>
<li>Content Creation</li>
</ul>
<p>Design</p>
<ul>
<li>Figma</li>
<li>Adobe Creative Suite</li>
<li>Photoshop</li>
<li>Illustrator</li>
<li>InDesign</li>
<li>Premiere Pro</li>
<li>After Effects</li>
<li>Klaviyo</li>
</ul>
<button class="btn btn-primary mt-3">Download Full Resume</button>
</div>
</div>
<div class="contact-section text-center mt-5">
<p class="lead">
<span role="img" aria-label="wave">👋</span> Get in touch at
</p>
<h2 class="email">[email protected]</h2>
<button class="btn btn-primary btn-lg mt-3">Contact Me</button>
<div class="footer mt-5">
<hr />
<nav>
<ul class="nav justify-content-center">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#">About</a></li>
<li class="nav-item"><a class="nav-link" href="#">Resume</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
</nav>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>