-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
104 lines (85 loc) · 4.49 KB
/
about.html
File metadata and controls
104 lines (85 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-F4TYFXN94T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-F4TYFXN94T');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://getbootstrap.com/docs/5.3/assets/css/docs.css">
<link rel="stylesheet" type="text/css" href="/css/custom.css">
<link rel="stylesheet" type="text/css" href="/css/about.css">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<title>About me — Yanwei Miao</title>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
</head>
<body>
<div id="nav-placeholder"></div>
<main>
<div class="container-xl">
<div class="row g-5">
<!-- About me -->
<div class="col-md-8">
<div class="card">
<h1>Ni hao!</h1>
<p>I'm Yanwei Miao,
my friends call me Miao
<span style="background: -webkit-linear-gradient(#5573C1, #9BA5C3); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;">(like a cat's meow)</span>.
I'm a designer who focuses on making digital stuff easy and helpful for people.
</p>
</div>
</div>
<!-- Selfie -->
<div class="col-md-12" id="selfie">
<img src="/assets/img/profile.jpeg" alt="My profile photo">
</div>
<!-- Q -->
<div class="col-md-4">
<h3>⋙</h3>
</div>
<!-- A -->
<div class="col-md-8">
<h2>I design things to improve lives and to make the world around us better. </h2>
</div>
<!-- Q -->
<div class="col-md-4"></div>
<!-- Bio -->
<div class="col-md-6">
<p>My design journey kicked off when I was a kid, but my real adventure began when I decided to pursue a bachelor's in Industrial Design.
After that, I wanted to dive deeper into the digital world, so I went for a master's in Interaction Design.
That's where I really got into the nitty-gritty of digital design.
<br><br>
With a solid foundation in design, I've <mark>fully embraced design thinking and cultivated a user-centred mindset</mark>, it's been helpful during my 4-year gig as an Interaction Designer in a telecom company in Shenzhen.
Working closely with awesome teams from different departments also broadened my perspective, pushing me to design with more structure and adaptability.
<br><br>
My curiosity about development led me back to university for another master's, this time in HCI.
Here, I got <mark>hands-on with frontend development</mark> in some cool projects.
I'm constantly learning and working towards being a "full-stacker".
I genuinely enjoy working and researching in this field, and strive to make my designs meaningful to make the world a little better!
</p>
</div>
<!-- Q -->
<div class="col-md-4">
</div>
<!-- Button -->
<div class="col-md-8">
<a href = "mailto: myanwei@gmail.com">
<button type="button" class="btn">myanwei@gmail.com</button>
</a>
</div>
</div>
</div>
</main>
<div id="footer-placeholder"></div>
<!-- Show navbar and footer -->
<script src="/js/main.js"></script>
</body>
</html>