Upload files to ''

This commit is contained in:
2023-05-23 03:05:46 +02:00
parent 30cb2832b5
commit 6c3cde1cdf
3 changed files with 265 additions and 0 deletions

41
index.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<style>
body {
overflow-x: hidden;
}
#container {
width: 100%;
height: 100%;
background-image: url("./map.jpg");
background-repeat: no-repeat;
background-size: 100% 100%;
padding: 0px;
}
</style>
<body>
<h1></h1>
<!-- Button -->
<div style="width: 20%; float:left">
<input type="radio" name="level" value="0" checked> Débutant<br>
<input type="radio" name="level" value="1"> Expérimenté<br>
<p id="instructions"></p>
</div>
<div style="width: 80%; float:right" id="container" class="svg-container">
</div>
<script type='text/javascript' src="./node_modules/d3/dist/d3.js"></script>
<script type='text/javascript' src="floyd_warshall.js"></script>
<script type='text/javascript' src="path.js"></script>
<script type='text/javascript' src="path_to_string.js"></script>
<script type='text/javascript' src="app.js"></script>
</body>
</html>