-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
125 lines (107 loc) · 6.06 KB
/
Copy pathabout.html
File metadata and controls
125 lines (107 loc) · 6.06 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
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
<!doctype html>
<html>
<head>
<title>About me</title> <!-- Title desplayed in browser tab -->
<link rel="icon" type="image/svg" href="/assets/images/svg/icon-blue.svg">
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/core.css">
<link rel="stylesheet" href="/assets/css/header-sidebar.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="/assets/css/about.css">
<!-- JS -->
<script src="/assets/javascript/header-sidebar.js"></script>
<!-- META -->
<meta name="pagename" content="about"> <!-- The name of the page-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=""> <!-- Description -->
<meta name="theme-color" content="#00f0f0">
<meta property="og:url" content="https://www.plotzes.ml/about"> <!-- URL to page -->
<meta property="og:type" content="website">
<meta property="og:title" content="About Plotzes"> <!-- Title of the page-->
<meta property="og:site_name" content="Plotzes">
<meta property="og:description" content="">
<meta property="og:image" content="https://www.plotzes.ml/assets/images/png/banner.png"> <!-- Image to use -->
<meta property="og:image:type" content="/assets/image/png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="plotzes.ml">
<meta property="twitter:url" content="https://www.plotzes.ml/about"> <!-- URL to page -->
<meta name="twitter:title" content="About Plotzes"> <!-- Title of the page -->
<meta name="twitter:description" content=""> <!-- Description -->
<meta name="twitter:image" content="https://www.plotzes.ml/assets/images/png/banner.png"> <!-- Image to use -->
</head>
<body>
<div id="root">
<div class="card">
<svg id="logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 100">
<title>Plotzes</title>
<g transform="matrix(0 -.1 .1 0 0 100)">
<path d="M44.296 446.293s150.017 135.58 408.206 135.58 408.206-135.58 408.206-135.58 235.57 320.8-35.64 425.43-372.567-289.85-372.567-289.85" fill="none" stroke="var(--main-color)" stroke-width="88.59" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="200.422" cy="82.397" r="82.397" fill="var(--main-color)"/>
<circle cx="752.323" cy="82.397" r="82.397" fill="var(--main-color)"/>
</g>
<text transform="matrix(12.59846 0 0 12.59846 -1445.293 -307.27)" font-size="10.583" font-family="Quicksand" fill="var(--main-color)">
<tspan x="122.645" y="32.221">lotzes</tspan>
</text>
</svg>
</div>
<div class="card">
<h1>Profile</h1>
<ul>
<li>Name: Plotzes <span style="font-size: 11px; color: #b0b0b0;">(not my real name)</span></li>
<li>Age: 18</li>
<li>Gender: male</li>
<li>Location: Netherlands</li>
<li>Hair colour: brown</li>
<li>Eye colour: brown</li>
<li>Height: 180cm</li>
</ul>
</div>
<div class="card">
<h1>Hobbies</h1>
<p>
One of my favourite things to do is to play TNT Wizards on the Hypixel Minecraft server.
I also love to code. That's why I made this whole website from scratch without any frameworks.
Sometimes I upload YouTube video's which you can check out by clicking on the YouTube icon at the top right
or by clicking <a href="https://youtube.com/channel/UCatx9Oa2Y55Q4A9lvTS5KYw" target="_blank">here</a>.
</p>
</div>
<div class="card">
<h1>Quote</h1>
<p>
<em class="highlight">Eventually it's going to be okay, unless you're dead before then.</em> ¯\_(ツ)_/¯<br>
<p><span style="float: right;">- Plotzes</span></p>
</p>
</div>
<div class="card">
<h1>Minecraft Skin</h1>
<img class="image" src="https://visage.surgeplay.com/full/272/9c48feb2eab5468cb6f95973d53924b9" alt="My Minecraft Skin">
</div>
<div class="card">
<h1>Contact</h1>
<p>
If you want to contact me then I <b>highly</b> recommend to send me a message in Discord.
My Discord tag is <span class="highlight">Plotzes#8332</span>.
If that doesn't work then you can also try sending me a DM via Twitter.
My username for Twitter is <span class="highlight">@ImPlotzes</span>.<br>
If you're really desperate and firstly have tried Discord and Twitter then, and only then, you can mail me at
<span class="highlight">plotzes@email.com</span>.
</p>
</div>
<div class="card">
<h1>Site information</h1>
<ul>
<li>Developer: Plotzes</li>
<li>Languages: HTML, CSS & JavaScript</li>
<li>Version: 2.5.1</li>
<li>Last updated: January 9th, 2022</li>
<br>
<li>
Additional notes:<br>
This website uses no frameworks, and only one page uses a JavaScript library.
The <a href="/playercount">player count page</a> uses <a href="https://developers.google.com/chart" target="_blank">Google Charts</a> for showing the data history.</li>
</ul>
</div>
</div>
</body>
</html>