battelship-game/HowToPlay.html
2025-01-19 19:45:54 +05:30

38 lines
1.6 KiB
HTML
Executable file
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to play</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body class="container">
<h1>Read on how to play</h1>
<hr>
<h2>Intro</h2>
<p>
This is a guessing game that is divided into <strong>cells</strong> and <strong>columns</strong>. Alphabet (A G) represents the column and number (0-6) represents the row.
</p>
<h2>Goal</h2>
<p>
At the right-bottom corner, there is an input box that accepts your input. Your job is to provide the two characters (for example B3) of which the first character is the alphabet from A to G (All in Caps) and a second character is a number from 0 to 6 into the input box. Your input will target the cell (combined with these two characters) to reveal its hidden value.
</p>
<p>
The game consists of 9 ships hidden behind these cells. You need to find or hit those ships in the minimum guess possible. When all the ships are found the game is over.
</p>
<p>
All right then, happy playing.
</p>
<hr>
<a href="./index.html">back</a>
</body>
</html>