-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (35 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My E-Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3">
</head>
<body>
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-body-emphasis text-decoration-none">
<span class="fs-4">Milana Tratsevska</span>
</a>
<ul class="nav nav-pills justify-content-center">
<li class="nav-item"><a href="index.html" class="nav-link text-muted">Home</a></li>
<li class="nav-item"><a href="courses.html" class="nav-link text-muted">Relevant Coursework</a></li>
<li class="nav-item"><a href="research.html" class="nav-link text-muted">Research</a></li>
<li class="nav-item"><a href="journal.html" class="nav-link text-muted">Journal</a></li>
<li class="nav-item"><a href="photos.html" class="nav-link text-muted">Photos</a></li>
</ul>
</header>
</div>
<div class="container col-xxl-8 px-1 py-2">
<div class="row align-items-center g-6 py-3">
<div class="col-lg-12">
<h1 class="display-6 fw-bold text-body-emphasis lh-1 mb-4">Home</h1>
<p class="">Hi! I am pursuing a B.S. in Computer Science at the University of Florida. This is my website for the University Research Scholars Program (URSP), where I will display my work! This site is still a work in progress, so please pardon the dust.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>