-
Notifications
You must be signed in to change notification settings - Fork 0
/
simplified.html
130 lines (117 loc) · 3.46 KB
/
simplified.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
property="og:url"
content="http://raymond-1227.github.io/simplified"
/>
<meta property="og:title" content="Raymond's Simplified Site" />
<meta
property="og:description"
content="An internet guy who does random stuff for no reason."
/>
<title>Raymond's Site</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
--text: #000000;
--bg: #ffffff;
}
body {
font-family: "Roboto", sans-serif;
background-color: var(--bg);
color: var(--text);
}
a {
text-decoration: none;
color: #05cab6;
}
a:hover {
text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
:root {
--text: #ffffff;
--bg: #1c1c1c;
}
}
</style>
</head>
<body>
<header>
<h1>Raymond Hsu</h1>
<h2>Welcome to my simplified profile page.</h2>
</header>
<h2>About Me</h2>
<p>
Hello! My name is Raymond, I am literary just a random kid from the
internet who likes to code, take photographs, and play video games. I love
making YouTube videos, but I never tend to stick to a specific topic so
any video ideas will be appreciated!
</p>
<h2>Hobbies</h2>
<h3>Photographing.</h3>
<p>
I love taking photos, that's why I'm currently learning how to composite
better to make my photos look more stunning and more sophisticated!
</p>
<h3>Coding.</h3>
<p>
Throughout my life I have always thought that coding was so cool, that's
why I started learning how to code. (also partly because I wanted a custom
Discord bot for my server, now it's released to everyone)
</p>
<h3>Discover.</h3>
<p>
Know what's happening around the world, and learn new knowledge to improve
life experiences. I share about my learning experiences and thoughts about
something too.
</p>
<h2>Contact</h2>
<p>
Contact me via social medias listed below. (I recommend you to contact me
via Discord for a faster respond)
</p>
<ul>
<li>Discord: <a href="https://discord.gg/sZmg77n5EC">rhsu</a></li>
<li>
Twitter: <a href="https://twitter.com/RaymondTheOof">RaymondTheOof</a>
</li>
<li>
YouTube: <a href="https://www.youtube.com/RaymondHsu">RaymondHsu</a>
</li>
<li>
Facebook: <a href="https://www.facebook.com/ush.dnomyar">ush.dnomyar</a>
</li>
<li>
Instagram:
<a href="https://www.instagram.com/ush.dnomyar/">rhsu.jpg</a>
</li>
<li>
GitHub: <a href="https://github.com/raymond-1227">raymond-1227</a>
</li>
<li>
Hypixel:
<a href="https://hypixel.net/members/dnomyar.1811695/">dnomyaR</a>
</li>
</ul>
<p>
This list is also available in a Linktree-like style, <a href="/social">click here</a>
to check out!
</p>
<hr />
<footer>
<p>© Raymond Hsu 2021-present | All rights reserved.</p>
<p>
Grammar fixed by
<a href="https://vilagamer999.github.io">Vilagamer999</a>
</p>
<p>
Inspired by
<a href="https://motherfuckingwebsite.com">Motherfucking Website</a>
</p>
</footer>
</body>
</html>