View sourcecode

The following files exists in this folder. Click to view.

fysik.html

25 lines ASCII Unix (LF)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        #canvas{
            border: 0.1svw solid black;
            display: block;
            margin: auto;
            background: #ffaccc;

            width: 90svw;
            padding: 0px;
        }
    </style>
    <title>Document</title>
</head>
<body>
    <canvas id="canvas" tabindex="0"></canvas>
    <p id="colltext"></p>

    <script src="fysikscript.js"></script>
</body>
</html>