dx2102 commited on
Commit
3ff9ec7
1 Parent(s): 9f3d5df

Update website.html

Browse files
Files changed (1) hide show
  1. website.html +2 -2
website.html CHANGED
@@ -6,15 +6,15 @@
6
  <title>Syntax Tree Visualization</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  </head>
9
- <body class="bg-gray-50 text-gray-900">
10
  <div class="container mx-auto mt-10">
11
  <h1 class="text-4xl font-bold mb-5">Syntax Tree Visualization</h1>
12
  <form class="mb-5" onsubmit="event.preventDefault(); search();">
13
  <input id="search-input" type="text" value="Lean" class="w-full p-2 border border-gray-300 rounded-md">
14
  <button class="mt-2 bg-blue-500 text-white px-4 py-2 rounded-md">Search</button>
15
  </form>
16
- <div id="results" class="mb-5"></div>
17
  <canvas id="tree-canvas" class="mx-auto border border-gray-300 rounded-md"></canvas>
 
18
  </div>
19
 
20
  <script>
 
6
  <title>Syntax Tree Visualization</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  </head>
9
+ <body class="overflow-scroll bg-gray-50 text-gray-900">
10
  <div class="container mx-auto mt-10">
11
  <h1 class="text-4xl font-bold mb-5">Syntax Tree Visualization</h1>
12
  <form class="mb-5" onsubmit="event.preventDefault(); search();">
13
  <input id="search-input" type="text" value="Lean" class="w-full p-2 border border-gray-300 rounded-md">
14
  <button class="mt-2 bg-blue-500 text-white px-4 py-2 rounded-md">Search</button>
15
  </form>
 
16
  <canvas id="tree-canvas" class="mx-auto border border-gray-300 rounded-md"></canvas>
17
+ <div id="results" class="mb-5"></div>
18
  </div>
19
 
20
  <script>