summaryrefslogtreecommitdiff
path: root/ft-visualizer/index.html
blob: ccb8f48c72169e61228872e0be1e1b36749845a3 (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
<!DOCTYPE html>
<html>
  <head>
    <title>Simponic's FT Visualizer</title>
    <style>
      body {
        margin: 0;
        height: 100vh;
        width: 100vw;
        padding: 0;
      }

      #calculator {
        height: 50vh;
        width: 100%;
      }

      .canvas-holder {
        height: 50vh;
        width: 100%;
      }

      .container {
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        max-width: 1300px;
        min-height: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div id="calculator"></div>
      <div class="canvas-holder">
        <canvas id="canvas"></canvas>
      </div>
    </div>

    <script src="https://www.desmos.com/api/v1.7/calculator.js?apiKey=dcb31709b452b1cf9dc26972add0fda6"></script>
    <script src="js/script.js"></script>
  </body>
</html>