-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
36 lines (29 loc) · 978 Bytes
/
grid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="Styling/gridstyle.css">
</head>
<body>
<svg>
<line stroke-width="1px" stroke="#000000" x1="19" y1="258" x2="100" y2="100" id="mySVG"/>
</svg>
<h1> TSP simulator </h1>
<!-- <header>
<nav>
<ul>
<li> <a href="index.html" > <h3>Home</h3> </a></li>
<li> <a href="aboutme.html" > <h3>About Me</h3> </a></li>
<li> <a href="challanges.html" > <h3>TSP Challanges</h3> </a></li>
<li> <a href="algorithms.html" > <h3>The Algorithms</h3> </a></li>
</ul>
</nav>
</header> -->
<div class="grid">
<table></table>
</div>
<script type="text/javascript" src="TSP_Engine/grid.js"></script>
</body>
</html>