-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
79 lines (77 loc) · 5.16 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="Personal Website" content="Resume, Experiences, Ect." />
<meta name="Lela Bones" content="Information about Lela" />
<title>Lela Bones's Personal Website</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
<!-- Navigation-->
<!--#include file="topNav.html" -->
<!-- Header-->
<header class="bg-dark py-5">
<div class="container px-5">
<div class="row gx-5 align-items-center justify-content-center">
<div class="col-lg-8 col-xl-7 col-xxl-6">
<div class="my-5 text-center text-xl-start">
i <h1 class="display-5 fw-bolder text-white mb-2">Welcome to Lela Bones's Personal Website!</h1>
<p class="lead fw-normal text-white-50 mb-4"<p>My name is Lela Bones, and I am a biomedical engineer, computer scientist, and mathematician. Currently I am a PhD Student at the Lewis Lab in the Cornell Meinig School of Biomedical Engineering. I have two bachelors of science from Salisbury University: mathemtics and computer science."</p>
<div class="d-grid gap-3 d-sm-flex justify-content-sm-center justify-content-xl-start">
<a class="btn btn-primary btn-lg px-4 me-sm-3" href="#features">Get Started</a>
<a class="btn btn-outline-light btn-lg px-4" href="resume.html">Resume</a>
</div>
</div>
</div>
<div class="col-xl-5 col-xxl-6 d-none d-xl-block text-center"><img class="img-fluid rounded-3 my-5" src="./assets/headshot.JPG" alt="..." /></div>
</div>
</div>
</header>
<!-- Features section-->
<section class="py-5" id="features">
<div class="container px-5 my-5">
<div class="row gx-5">
<div class="col-lg-4 mb-5 mb-lg-0"><h2 class="fw-bolder mb-0">Brief overview of experiences</h2></div>
<div class="col-lg-8">
<div class="row gx-5 row-cols-1 row-cols-md-2">
<div class="col mb-5 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-collection"></i></div>
<h2 class="h5">Graduate Research Assistant</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col mb-5 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-building"></i></div>
<h2 class="h5">Amgen Scholar at Johns Hopkins</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col mb-5 mb-md-0 h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-toggles2"></i></div>
<h2 class="h5">Teaching/Tutoring at Salisbury University</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
<div class="col h-100">
<div class="feature bg-primary bg-gradient text-white rounded-3 mb-3"><i class="bi bi-toggles2"></i></div>
<h2 class="h5">National Institute of Standards and Technology Fellow</h2>
<p class="mb-0">Paragraph of text beneath the heading to explain the heading. Here is just a bit more text.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer-->
<!--#include file="footer.html" -->
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>