-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
49 lines (43 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="Utf-8">
<meta name="author" content="Adi Sempertegui">
<meta name="description" content="weekly blog">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adi's Website</title>
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/share.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script language="JavaScript" type="text/javascript" src="js/nav.js"></script>
</head>
<script>
window.addEventListener("load", function() {
$.get("https://semperag.github.io/nav.html", function(data){
$("#about-link").addClass("active");
});
});
</script>
<body>
<video id="preloader" autoplay loop muted playsinline src="css/preloader.mp4" type="video/mp4"></video>
<div id="root">
<main>
<div id="center-view">
<div id="nav-placeholder"></div>
<div class="about-title">
About me
<div class="card">
<img id="adi-face" src="images\adisempertegui.jpg"/>
<p>Hi! 👋</p>
<p>My name is Adi, I’m a Software Engineer at DTIS. In 2022, I graduated from James Madison University where I studied Computer Science.</p>
<p>Throughout my Junior and Senior year, I was a Teacher Assistant for the Computer Science Department. This meant I assisted students with various problems including core object-oriented concepts and debugging their own projects.</p>
<p>In my spare, I am learning music composition, weightlifting, and I enjoy working on side-projects (like this website), learning new programming languages, and casually getting on OW. :)</p>
</div>
</div>
</div>
</main>
</div>
<script language="JavaScript" type="text/javascript" src="js/share.js"></script>
</body>
</html>