-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
86 lines (86 loc) · 3.06 KB
/
index.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
<!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>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<script
defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-5">
<div class="container">
<!-- Title -->
<a href="#" class="navbar-brand">Andy Lee</a>
<!-- Right-hand Buttons (md, lg, xl) -->
<!-- Left-hand Dropdown Buttons + Right-hand Hamburger Icon (xs, sm) -->
<button
class="navbar-toggler"
data-bs-toggle="collapse"
data-bs-target="#nav"
aria-controls="nav"
aria-label="Expand Navigation"
>
<div class="navbar-toggler-icon"></div>
</button>
<div class="d-none d-md-block" style="width: 100%"></div>
<div class="collapse navbar-collapse" id="nav">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#" class="nav-link active" aria-current="page">Home</a>
</li>
<li class="nav-item">
<a href="./skills.html" class="nav-link">Skills</a>
</li>
<li class="nav-item">
<a href="./projects.html" class="nav-link">Projects</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="d-none d-lg-block" style="height: 5rem"></div>
<div class="container d-flex mb-5">
<div class="row">
<div class="col-12 col-lg-6 d-flex justify-content-center">
<img
class="rounded-3 mb-5 mb-lg-0"
src="./images/my_picture.png"
alt="Andy Lee"
/>
</div>
<div
class="col-12 col-lg-6 d-flex flex-column justify-content-center fade-in-image"
>
<div class="mb-4 display-1">Andy Lee</div>
<div class="mb-3 display-6">
Student & Software Developer & Entrepreneur
</div>
<p>
Hi! I am a 2nd year CS student at the University of Waterloo, and I
am currently working as a UI developer at Versa Networks.
</p>
<p>
Along side school and work, I am also the founder of Algo, a startup
that develops a next-generation task management application that can
automate your schedule and email management.
</p>
<p>Contact me at: [email protected]</p>
</div>
</div>
</div>
</body>
</html>