28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html ng-app="myApp">
|
||
|
<head>
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.js"></script>
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||
|
<!-- CSS only -->
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
|
||
|
<link rel="icon" href="amoguspawn.png">
|
||
|
<script src="chess.js"></script>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>Sussy Chess</h1>
|
||
|
<nav>
|
||
|
<ul>
|
||
|
<li><a href="#!/">Play Chess</a></li>
|
||
|
<li><a href="#!/one">Lorem Ipsum</a></li>
|
||
|
<li><a href="#!/two">What is Lorem Ipsum?</a></li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<section ng-view>
|
||
|
</section>
|
||
|
<footer>This is the end of the page</footer>
|
||
|
</body>
|
||
|
</html>
|