A bot used for https://code-your-snake.codingmaster398.repl.co/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
588 B
29 lines
588 B
2 years ago
|
<!DOCTYPE HTML>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>PathFinding.js</title>
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
background: #333;
|
||
|
}
|
||
|
|
||
|
#main {
|
||
|
color: #fff;
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
width: 500px;
|
||
|
text-align: center;
|
||
|
margin-left: -250px;
|
||
|
margin-top: 200px;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="main">
|
||
|
Sorry, your browser is not supported
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|