-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (72 loc) · 1.85 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
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
<!DOCTYPE html>
<html lang ="de">
<head>
<title>kleinSinus</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1> Who is kleinSinus ? </h1>
<a href="#study"> He studies CS </a>
<a href="#hobby"> He has hobbies </a>
<a href="#random"> He does random stuff </a>
<h2 id="study"> A student of Computer Science </h2>
<pre>
func drink(){
if(cup.content() == 0){
if(checkPantry("coffee") == true){
getCoffee();
cup.refill();
enjoy();
} else if(checkPantry("tea") == true){
addToGroceryList("coffee");
getTea();
cup.refill();
enjoy();
} else {
addToGroceryList("coffee");
addToGroceryList("tea");
weep();
}
enjoy();
}
}
while(work != done){
setTimer(15);
while(timer != 0){
if(currentTask.done == 1){
getNextTask();
}
work();
}
drink();
}
</pre>
<hr>
<h2 id="hobby">A hobbyist artist</h2>
<img src="img/test.png" alt="Head of Marvel's venom, sticking his tongue out" usemap="#venomap">
<map name="venomap">
<area shape="rect" coords="10,10,200,200" alt="Mouth" onclick="mouthClick">
<area shape="circle" coords="20,20,5" alt="left Eye" onclick="leftEyeClick">
<area shape="circle" coords="10,10,5" alt="right Eye" onclick="rightEyeClick">
</map>
<script>
function leftEyeClick() {
alert("You clicked the left eye!");
}
function rightEyeClick() {
alert("You clicked the right eye!");
}
function mouthClick() {
alert("You clicked the mouth!");
}
</script>
<p>Check out my deviantArt-Account
<a href="https://kleinsinus.deviantart.com/" target="_blank"> deviantArt </a>
</p>
<hr>
<h1 id="random">User of Online LaTeX Compilers</h1>
<p>Here's an
<a href="https://latex.informatik.uni-halle.de/latex-online/latex.php" target="_blank"> Online LaTeX-Compiler from Uni Halle </a>
</p>
</body>
</html>