summaryrefslogtreecommitdiff
path: root/index.html
blob: 8d2b418f648c3d8a6f9b6cceaded3126ec762897 (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
41
42
43
44
45
46
47
48
49
50
51
<!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: <a href = "an.kn@protonmail.ch">an.kn@protonmail.ch</a></p>
    <p>Welcome to my minimal online presence.</p>

<div align = "center">
<img width = "250" src = "img/AK_Profile.jpg">
</div>

<button id="Button!">Button</button>

    <h4> Sustainability Projects:</h4>
    <ul>
        <li><a href="https://ssc.ethz.ch/">SSC (Student Sustainability Commission, ETH Zurich)</a></li>
        <li><a href="https://www.phys.ethz.ch/the-department/sustainability/nhw2021.html">Sustainability Week @DPHYS 2021</a></li>
        <li><a href="https://www.phys.ethz.ch/news-and-events/internal-news/d-phys-intern/2021/06/klima-ich-habe-keine-zeit-gilt-nicht.html">Physicists for Sustainability Interview</a></li>
    </ul>
    <h4> Fun with Math: </h4>
    <ul>
        <li><a href="https://golem.ph.utexas.edu/category/2021/08/cospans_and_computation_part_1.html#more">A Socratic Dialogue on Category Theory</a></li>
        <ul>
    <h4> Some magazines I have produced: </h4>
    <ul>
        <li><a href="https://vmp.ethz.ch/secure/documents/brave.pdf"> Brave New EarTH</a></li>
        <li><a href="https://vmp.ethz.ch/secure/documents/hitchhiker.pdf">The Hitchhiker's Guide to the ETH</a></li>

        <li><a href="https://vmp.ethz.ch/secure/documents/kunterbunt.pdf"> KUNTERBUNT</a></li>
        <li><a href="https://vmp.ethz.ch/secure/documents/brave.pdf"> Brave New EarTH</a></li>
        <li><a href="https://ssc.ethz.ch/assets/earth_magazine.pdf"> the EarTH Magazin - Edition "Coopeation"</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>