-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
104 lines (91 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Katherine Vo</title>
<!--Favicon-->
<link rel="shortcut icon" href="assets/img/katedoodle.PNG">
<!-- Links CSS file: fontawesome, Bootstrap -->
<link href="assets/fontawesome/css/all.css" rel="stylesheet"/>
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
<!--Sofia Pro font-->
<link rel="stylesheet" href="https://use.typekit.net/ekz7plf.css">
</head>
<body>
<!-- NAV BAR -->
<nav class="navbar navbar-light navbar-expand-sm">
<div class="container">
<a href="index.html" class="navbar-brand">Katherine Vo</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#myTogglerNav" aria-controls="myTogglerNav" aria-expanded="false" aria-label="Toggle nav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myTogglerNav">
<div class="navbar-nav ms-auto">
<a href="#" class="nav-item nav-link active">About</a>
<a href="education.html" class="nav-item nav-link">Education</a>
<a href="projects.html" class="nav-item nav-link">Projects</a>
</div>
</div>
</div>
</nav>
<!-- CONTENT -->
<div class="container">
<img class="mx-auto d-block" src="assets/img/katedoodle2.PNG" alt="kate doodle" width="200" height= "200">
<p class="text-center">Hi, my name is Katherine, but many people call me Kate! I am an undergraduate student at the University of Maryland, College Park!
I enjoy learning about all things design: illustrations, graphic design, web design, UI/UX design, and more! I am pursuing a career
in product design and hope to bring positive change to the world. In my free time, I enjoy trying out new food places and binge
watching Netflix shows.😊
</p>
<br>
<p class="text-center">Feel free to browse through my projects!
<a href="https://www.linkedin.com/in/katherine-vo/" target="_blank">Reach out</a> anytime and I look forward to chatting with you!
</p>
<a href="assets/Vo_Katherine_Resume_Website.pdf" target="_blank" style="text-decoration:none;"><button class="btn btn-secondary mx-auto d-block mb-2">Resume</button></a>
</div>
<!-- FOOTER -->
<footer class="footer">
<div class="container">
<hr>
<div class="row">
<p class="text-center text-muted">
© Katherine Vo 2021
</p>
</div>
<div class="row text-center">
<div class="col">
<a href="https://www.linkedin.com/in/katherine-vo/" target="_blank" class="ms-2"><i class="fab fa-linkedin" style="font-size: 300%;"></i></a>
<a href="https://github.com/kthrnv", target="_blank" class="ms-2"><i class="fab fa-github-square" style="font-size: 300%;"></i></a>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<!-- <script src="assets/bootstrap/js/jquery.slim.min.js"></script>
<script src="assets/bootstrap/js/popper.min.js"></script> -->
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!--Back To Top Button-->
<br>
<button onclick="topFunction();" id="myBtn" title="Go to top"><i class="fas fa-chevron-circle-up"></i></button>
<script>
//Get the button
var mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>