-
Notifications
You must be signed in to change notification settings - Fork 1
/
personal.html
118 lines (112 loc) · 4.02 KB
/
personal.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
<!DOCTYPE html>
<html>
<head>
<title>Personal</title>
<!--#include virtual="html/elements/head.html" -->
</head>
<body>
<!--#include virtual="html/elements/navbar.html" -->
<main class="main">
<div class="text">
<h1>Hi there 👋</h1>
<p>
My name is Stefan, and I love coding in my free time :)<br>
You can find my projects under <a href="projects.html">Projects</a>. Now and then I also like to take
some
pictures; some of the better ones you can find under <a href="photos.html">Photos</a>. 😊
</p>
</div>
<div class="text">
<h1 id="pronouns">Binary is for computers 🏳️🌈</h1>
<p>I identify as non-binary and here are my pronouns.</p>
<h2>English</h2>
<p>Simple and easy 😁</p>
<div class="table-div">
<table>
<tr>
<th>Subject</th>
<th>Object</th>
<th>Possessive Adjective</th>
<th>Possessive</th>
<th>Reflexive</th>
<th>Opinion</th>
</tr>
<tr>
<td>Ze</td>
<td>Zir</td>
<td>Zirs</td>
<td>Zirs</td>
<td>Zirself</td>
<td>Preferred 😊</td>
</tr>
<tr>
<td>They</td>
<td>Them</td>
<td>Their</td>
<td>Theirs</td>
<td>Themself</td>
<td>Also fine 🙂</td>
</tr>
</table>
</div>
<h2>German</h2>
<p>Why is German so complicated? 🙃</p>
<div class="table-div">
<table>
<tr>
<th colspan=2>Type of pronoun</th>
<th>Nominativ</th>
<th>Genitiv</th>
<th>Dativ</th>
<th>Akkusativ</th>
</tr>
<tr>
<th colspan=2>Personalpronomen</th>
<td>Xier</td>
<td>Xieser</td>
<td>Xiem</td>
<td>Xien</td>
</tr>
<tr>
<th colspan=2>Relativpronomen</th>
<td>Dier</td>
<td>Dies</td>
<td>Diem</td>
<td>Dien</td>
</tr>
<tr>
<th rowspan=4>Possessivpronomen</th>
<th class="th-lvl-2">Maskulin</th>
<td>Xies</td>
<td>Xieses</td>
<td>Xiesem</td>
<td>Xiesen</td>
</tr>
<tr>
<th class="th-lvl-2">Feminin</th>
<td>Xiese</td>
<td>Xieser</td>
<td>Xieser</td>
<td>Xiese</td>
</tr>
<tr>
<th class="th-lvl-2">Neutrum</th>
<td>Xies</td>
<td>Xieses</td>
<td>Xiesem</td>
<td>Xiesen</td>
</tr>
<tr>
<th class="th-lvl-2">kein Geschlecht</th>
<td>Xiesa</td>
<td>Xiesas</td>
<td>Xiesam</td>
<td>Xiesan</td>
</tr>
</table>
</div>
</div>
</main>
<!--#include virtual="html/elements/footer.html" -->
</body>
</html>