-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (66 loc) · 2.92 KB
/
about.html
File metadata and controls
69 lines (66 loc) · 2.92 KB
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">
<title>Ruby's Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel=stylesheet href="css/styles.css">
</head>
<body>
<div class="navbar">
<a href="index.html">🏠 Home</a>
<a href="projects.html">💼 Projects</a>
<a href="about.html">👋 About</a>
</div>
<div class="content">
<h1>About me</h1>
<p>Hey, I'm Ruby, a 15-year-old trans girl from New Zealand. I'm also kinda nerdy~</p>
</div>
<div class="content">
<h2>Socials</h2>
<p>You can find all the platforms I am on below. If it's not here, it probably isn't me!</p>
<table class="socials">
<tr>
<td><img src="assets/platforms/github.png"></td>
<td><a href="https://github.com/rubythecutie">@rubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/youtube.png"></td>
<td><a href="https://youtube.com/@iamrubythecutie">Ruby <3</a></td>
</tr>
<tr>
<td><img src="assets/platforms/spotify.png"></td>
<td><a href="https://open.spotify.com/user/31ltxnv6lsumjwb3oxufwtuxeugy">Ruby</a></td>
</tr>
<tr>
<td><img src="assets/platforms/reddit.png"></td>
<td><a href="https://www.reddit.com/user/iamrubythecutie">@iamrubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/x.png"></td>
<td><a href="https://x.com/iamrubythecutie">@iamrubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/mastodon.png"></td>
<td><a href="https://mastodon.social/@rubythecutie">@rubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/steam.png"></td>
<td><a href="https://steamcommunity.com/id/rubythecutie/">iamrubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/pronounspage.png"></td>
<td><a href="https://en.pronouns.page/@iamrubythecutie">@iamrubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/gravatar.png"></td>
<td><a href="https://gravatar.com/rubythecutie">rubythecutie</a></td>
</tr>
<tr>
<td><img src="assets/platforms/chess.png"></td>
<td><a href="https://www.chess.com/member/iamrubythecutie">iamrubythecutie</a></td>
</tr>
</table>
</div>
</body>
</html>