summaryrefslogtreecommitdiff
path: root/index.html
blob: a4e92e10ddd1e609f3efd470395198d150ff4698 (plain)
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Anna Knörr</title>
</head>

    <p>Hi, my name is Anna. I'm currently a graduate student in theoretical physics at Perimeter Institute in Waterloo, Canada.<p>
    <p>You can contact me here: an.kn@protonmail.ch </p>
    <p>Welcome to my minimal online presence.</p>

<div align = "center">
<img width = "100" border = "2" src = "img/AK_Profile.jpg">
</div>

    <h4> of these:</h4>
    <ul>
        <li><a href="https://campus-kit.de">KIT Campus in Minecraft</a></li>
        <li><a href="https://git.kobert.dev">Cgit</a></li>
        <li><a href="https://games.kobert.dev">Game Lobby</a></li>
        <li><a href="https://github.com/squirrel-labs/ratatosk">Rask github</a></li>
        <li><a href="https://rask.rocks">Rask Preview</a></li>
        <li><a href="/spotify/landing.html">Spotify intersecter</a></li>
        <li><a href="https://wiki.kobert.dev">Uff-os Wiki</a></li>
    </ul>
    <h4>Online Whiteboard</h4>
    <input type="text" id="whiteboard_name" placeholder="Whiteboard name">
    <input type="text" id="user_name" placeholder="Username">
    <button id="Whitebord_button" onclick="redirect_whiteboard()">Open whiteboard</button>

<script>
    function redirect_whiteboard() {
        let user = document.getElementById("user_name").value;
        let id = document.getElementById("whiteboard_name").value;
        window.location = "https://kobert.dev/whiteboard/?whiteboardid=" + id + "&username=" + user;
    }
</script>

</html>