forked from claudebarde/sea-battle-midnight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 1.02 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Titans and Oceans</title>
</head>
<body>
<h1>Titans and Oceans (A Midnight Battleship Game)</h1>
<h2>By: GoChrisGo and John Santi</h2>
<h2>Instructions</h2>
<p>
This is a game of battleship. You can play against the computer or against
another player. The game is played on a 10x10 grid. Each player has 5 ships
to place on the grid. The ships are: 1 aircraft carrier (5 spaces), 1
battleship (4 spaces), 1 submarine (3 spaces), 1 destroyer (3 spaces), and 1
patrol boat (2 spaces). The ships can be placed horizontally or vertically
on the grid. The ships cannot overlap or be placed diagonally. The game is
won when all of the opponent's ships have been sunk.</p>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>