-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
168 lines (119 loc) · 3.56 KB
/
about.php
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
162
163
164
165
166
167
168
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hao Le | About</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<?php include("boilerplate/favicon.php") ?>
</head>
<style>
#about-container{
display: inline-grid;
grid-template-columns: 1fr 1fr;
justify-items: center;
align-items: center;
width: 90%;
row-gap: 30px;
column-gap: 30px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
justify-self:center;
line-height: 1.1;
}
#about-paragraph{
display:block;
color: white;
}
#avatar{
max-width: 100%;
max-height: 80vh;
}
@media (max-width: 900px) {
#about-container{
display: inline-grid;
grid-template-columns: 1fr;
}
#avatar{
width: 100%;
}
}
.fa {
padding: 20px;
font-size: 30px;
width: 30px;
text-align: center;
text-decoration: none;
border-radius: 50%;
color:white;
background-color:#fcb205;
display:block;
}
#links{
display:inline-block;
list-style-type: none;
width: fit-content;
text-align:center;
justify-self: center;
padding:20px;
}
#links li{
display: inline-block;
float: center;
list-style: none;
padding: 0 2px;
}
#about-text{
height:auto;
color: white;
font-size: 18px;
text-align: justify;
text-justify: inter-word;
}
.container {
display: inline-grid;
width: auto;
height: 100vh;
grid-template-columns: 1fr;
align-items: center;
}
.social {
display: flex;
justify-content: center;
align-items: center;
margin-left: 5px;
margin-right: 5px;
overflow: hidden;
height: 100%;
}
.image-in-grid{
min-width: 100%;
min-height: 100%;
object-fit: cover;
}
@media (max-width: 1100px) {
#about-text{
font-size:15px;
width:90%;
}
}
</style>
<body>
<?php include("boilerplate/header.php") ?>
<main style="text-align:center;">
<div id="about-container">
<div class="container">
<div class="social">
<img src="img/aboutMe/plein-air.jpg" class="image-in-grid"/>
</div>
</div>
<div id = "about-text">
Hello! Thanks for checking out my site. I don't get a lot of visitors so it's nice that you're here.<br><br>I am currently a master's student at <a href="https://www.ece.ucsd.edu/">UC San Diego's electrical engineering department</a> - this is also where I obtained my bachelor's plus a minor in studio arts! I keep myself busy as a researcher at the <a href="http://iebl.ucsd.edu/">Integrated Electronics and Biointerfaces Lab</a> supervised by Dr. Shadi Dayeh. My last industry occupation was at <a href="https://www.quartus.com/">Quartus Engineering</a>. If I'm not home playing guitar, tending my garden, admiring my tarantulas, or decorating fish tanks, I'm probably somewhere really far away with my portable easle, painting nature in front of me.<br><br>If you want to see how I made this website (hosted on a Raspberry Pi underneath my couch), visit its repo on <a href="https://github.com/anhhao135/website.git">GitHub.</a> If you want to find out more on my background, or contact me, take a look at my <a href="resume.pdf">résumé</a> or connect with me on <a href="https://www.linkedin.com/in/hao-le-07b726132/">LinkedIn.</a>
</div>
</div>
</main>
<?php include("boilerplate/footer.php") ?>
</body>
</html>