-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (28 loc) · 1.07 KB
/
index.html
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
<!DOCTYPE html>
<html style="font-size: 16px;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>floyd-warshall</title>
<link rel="stylesheet" href="index.css" media="screen">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type="module" src="main.js"></script>
</head>
<body>
<header>
<select id="languageSwitcher">
<option value="de">Deutsch</option>
<option value="en">English</option>
</select>
<a href="https://github.com/picupup/floyd-warshall-algorithm" style="float: right; margin-right: 20px;">github.com</a>
</header>
<div>
<h1 id="heading">Floyd-Warshall Algorithmus</h1>
<label for="my_input" id="label">Bitte die Matrizen Dimension von (n) mal (n) angeben</label>
<input type="number" id="my_input" name="my_input" min="2" max="20" value="5">
<button id="numbersubmit" data-toggle="modal" data-target="#myModal" onclick="createfield()" type="button">GO</button>
</div>
<div id="matrix"></div>
<div id="matrixresponse"></div>
</body>
</html>