-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
69 lines (68 loc) · 4.15 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
<!-- Used bootstrap to build personal website-->
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Handlee|Ubuntu">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<body style = "background-color: #EAE7DC;background-image: url(assets/earth.png);
background-position: right; background-repeat: no-repeat">
<header>
<nav class="navbar navbar-expand-lg navbar-light fixed-top" style = "background-color: #D8C3A5;">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent" style = "background-color: #D8C3A5;">
<ul class="navbar-nav mr-auto">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item">
<a class="nav-link" href="project.html">Projects</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">About Me <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
</header>
<div class="paragraph px-3" style = "font-family: Handlee; color: #52504d;">
<h1 class="mb-3 font-weight-bold pt-3">About Me</h1>
<h4 class="mb-3">Hello and welcome to my website!</h4>
<h4 class="mb-3">My name is Amy, and I am an undergraduate student studying EECS. </h4>
<h4 class="mb-3">As an EECS major, I have a passion for designing and creating innovative technology that can improve people's lives.
My particular interest lies in the realm of frontend design and user interface, as I believe that a well-designed interface can
greatly enhance the user experience and make technology more accessible to everyone.</h4>
<h4 class="mb-3">Aside from my academic pursuits, I also enjoy spending my free time playing video games. Gaming has been a part of
my life for as long as I can remember, and I find it to be a great way to unwind and relax after a busy day of coding and studying.</h4>
<h4 class="mb-3">On this website, you will find a collection of my projects and designs, as well as some insights into my personal
interests and hobbies. I hope you enjoy browsing through my work and getting to know me better! </h4>
<h4 class="mb-3"></h4>
</div>
<footer>
<nav class="navbar fixed-bottom navbar-light" style = "background-color: #D8C3A5;">
<div class="btn-group mx-auto">
<a class="px-3" href="https://github.com/KCsama">
<img src = "assets/github-mark.png" width=40vw height=40vh>
</a>
<a class="px-3" href="https://www.linkedin.com/in/amy-dong-804883239/">
<img src = "assets/LI-Logo.png" width=145vw height=38vh>
</a>
<a class="px-3" href="mailto:amydong0205@gmail.com">
<img src = "assets/email.png" width=40vw height=40vh>
</a></div>
</nav>
</footer>
</body>
</html>