-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (51 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home | Skye Gallup</title>
<!-- general metadata tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- OpenGraph metadata (for embeds in Facebook, Discord, etc.) -->
<meta property="og:title" content="Home | Skye Gallup">
<meta property="og:description" content="A site about me!">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Skye Gallup">
<meta property="og:image" content="https://skyebound.gay/assets/img/portrait.jpg">
<meta property="og:image:alt" content="A picture of Skye Gallup.">
<meta property="og:url" content="https://skyebound.gay">
<!-- Twitter embed metadata -->
<meta name="twitter:card" content="summary">
<!-- Twitter pulls the title, descrption, and image from the OpenGraph tags above -->
<!-- CSS and other resources -->
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<nav>
<p class="title">Skye Gallup</p>
<div class="links">
<p><a class="active" href="/">About me</a></p>
<!-- <p><a href="blog/">Blog</a></li> -->
<p><a href="/resume">Resume</a></p>
</div>
</nav>
<main>
<h1>About me</h1>
<figure>
<img src="/assets/img/portrait.jpg" alt="A portrait of Skye Gallup">
<figcaption>A picture of me!</figcaption>
</figure>
<ul>
<li>she/her</li>
<li>
Current student at Rochester Institute of Technology, studying Computer Science and Human-Centered
Computing
</li>
<li>Previously worked at Eastman Kodak Company and Real Wave Capital</li>
<li>Interested in physical and digital design, songwriting, 3D printing, and foam dart blasters</li>
</ul>
</main>
<footer>
<p>Copyright © Skye Gallup 2023. Hosted using <a href="https://pages.github.com/" target="_blank">Github Pages</a>.</p>
</footer>
</body>
</html>