-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
69 lines (60 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
</head>
<body>
<!--Nav Bar and Hamburger Menu-->
<header class="header">
<label class="hamburger-menu">
<input type="checkbox">
</label>
<aside class="sidebar">
<nav role="main">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="contact.html">Contact Form</a></li>
</ul>
</nav>
</aside>
<a href="index.html"><span>junibee</span></a>
<div class="social_icon">
<a href="contact.html" title="Gmail" target="_self">
<ion-icon name="mail-outline"></ion-icon>
</a>
<a href="https://www.linkedin.com/in/juni-bautista/" title="Linkedin" target="_blank" >
<ion-icon name="logo-linkedin"></ion-icon>
</a>
<a href="https://github.com/junerdz" title="GitHub" target="_blank">
<ion-icon name="logo-github"></ion-icon>
</a>
</div>
</header>
<section class="about">
<h2>About Me</h2>
<p>Hi, I'm currently a Junior at Virginia Tech pursuing a Bachelor's in Computer Science.</p>
</section>
<!--About Me Images-->
<section class="container">
<div class="slider-wrapper">
<div class="slider">
<img id="slide-1" src="IMG-5431.jpg" alt="Hanging Rock Raptor Obervatory in Union, WV">
<img id="slide-2" src="IMG-4788.jpg" alt="A picture I took in the Fall of Virginia Tech">
<img id="slide-3" src="IMG-3159.JPG" alt="Me!">
</div>
<div class="slider-nav">
<a href="#slide-1"></a>
<a href="#slide-2"></a>
<a href="#slide-3"></a>
</div>
</div>
</section>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>