-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (93 loc) · 4.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Silkscreen">
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Quicksand:wght@500&family=Varela+Round&display=swap" rel="stylesheet">
<title>Home Page</title>
</head>
<body>
<div class="navbar">
<a href="index.html" style="float: left; color: rgb(170, 222, 247);">Gabrielle Uy</a>
<a href="index.html">Contact</a>
<a href="resume.html">Resume</a>
<a href="portfolio.html">Portfolio</a>
<a href="index.html">About Me</a>
</div>
<div class="page-title">
<header>
<h1>Hello, World!</h1>
<h5 style="text-align: center;">Welcome to my personal website</h5>
</header>
</div>
<div class="content-background">
<div class="content">
<!-- About Me Section -->
<div id="about-me">
<div class="section-header">
<h2>About Me</h2>
</div>
<div id="profile-pic">
<img src="dp.png" alt="Gabie" style="border-radius: 50%" width="15%">
<h3 style="font-family: 'Silkscreen'">Gabrielle Uy</h3>
<h5>📍 New York, NY</h5>
</div>
</div>
<div class="description">
<p>I'm aspiring to be a cybersecurity professional and a web developer. I built this website from scratch to showcase my portfolio and skills.</p>
<p>I graduated from BS in Information Technology concentrating in Business Analytics, and MS in Cybersecurity.</p>
<p>What you'll find here: </p>
<ol>
<li>Certifications</li>
<li>Projects & Research Papers</li>
<li>Course & Hackathon Projects</li>
<li>Capture-the-Flag Activities & other cybersecurity related work</li>
<li>My hobbies & interests</li>
</ol>
<p>Feel free to look around!</p>
</div>
<!-- Hobbies & Interests Section-->
<div id="interests">
<div class="section-header">
<h2>Hobbies & Interests</h2>
</div>
<div class="description">
<ol>
<li><a href="https://vsco.co/gabie-uy/gallery">Photography</a></li>
<li>Being a coffee barista</li>
<li>Traveling & learning new languages (currently: Japanese)</li>
<li>Anything pixelated (from games, designs, etc.)</li>
<li>Sports - Watching international volleyball, Formula 1</li>
<li>Sports – I play volleyball, golf, badminton (when I can: racing, pickleball)</li>
<li><a href="https://www.twitch.tv/gabizzle11">Gaming</a></li>
<li><a href="https://myanimelist.net/profile/gabizzle">Anime</a></li>
</ol>
</div>
</div>
<!-- GitHub Section-->
<div class="github">
<div class="section-header">
<h2><a href="https://github.com/gabie-uy">GitHub</a></h2>
</div>
<div id="github-content">
<div class="github-card" data-github="gabie-uy" data-width="100%" data-theme="default"></div>
<script src="https://cdn.jsdelivr.net/github-cards/latest/widget.js"></script>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<p>Connect with me!</p>
<a href="https://instagram.com/gabieuy" target="_blank"><img src="Instagram.png" alt="Instagram"></a>
<a href="https://linkedin.com/in/gabrielleauy" target="_blank"><img src="LinkedIn.png" alt="LinkedIn"></a>
<a href="https://gabie-uy.notion.site/R-sum-120fff2f9f46804ebb51cd7f5efb1e0d?pvs=4" target="_blank"><img src="Notion.png" alt="Notion"></a>
<a href="https://Twitch.com/gabizzle11" target="_blank"><img src="Twitch.png" alt="Twitch"></a>
<p>© 2024 Gabrielle Uy</p>
</footer>
</body>
</html>