-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (39 loc) · 1.47 KB
/
about.html
File metadata and controls
39 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/about.css" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://kit.fontawesome.com/a890946c74.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;600&display=swap"
rel="stylesheet"
/>
<title>Kaelen's website</title>
</head>
<body>
<div id="nav-placeholder"></div>
<div id="blossom_container"></div>
<section>
<div class="about">
<div class="header"><p>Howdy!</p></div>
<div class="text">
I graduated from UT Austin in 2022 and now work on the AIOps Experiences team at Microsoft.
I am passionate about creating experiences and building impactful and accessible products.
I really enjoy accessible + visual design, environmental sustainability, and human computer interaction.
<br /><br />
I also enjoy doing sudoku puzzles, snowboarding, gardening + plant propagation, and climbing!
</div>
</div>
</section>
</div>
<script src="/script/cherryBlossom.js" text="text/javascript"></script>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
</body>
</html>