1
0
mirror of https://github.com/EECS-448-Battleship/project-1 synced 2024-09-28 22:20:48 +00:00
eecs448-project-1/index.html

25 lines
924 B
HTML
Raw Normal View History

2020-09-05 02:42:09 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Battleship | EECS 448</title>
<link rel="stylesheet" href="./src/style/components.css">
2020-09-05 02:42:09 +00:00
</head>
<body>
<h1>Battleship - EECS 448 Project 1</h1>
<p>Created by Lucas Brakenridge, Javier Barea Lara, Garrett Mills, Evan Powell, and Alec Horlick-Mills</p>
<!-- This is the container where the Vue.js application will render to. -->
<div id="wrapper">
<!-- The game board. See the "GameBoard.component.js" for this. -->
<app-game-board></app-game-board>
</div>
<script src="./lib/vue-2.6.11.js"></script>
<script src="./lib/vues6.js" type="module"></script>
<script src="./src/module/start.js" type="module"></script>
</body>
</html>