-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.25 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Puzzle Games</title>
<link rel="stylesheet" href="css/homepage.css">
</head>
<body>
<div class="container">
<header class="header">
<h1>Hands-On AI: Play with Intelligent Assistance</h1>
<p>Choose your favorite puzzle to challenge your mind!</p>
These games shall apply the principles of arc-consistency from set values to the values to be entered to give valid domains for your solution. Moreover, it shall prevent you from entering a value outside of the valid domain.
</header>
<main class="games">
<div class="game">
<h2>Sudoku</h2>
<p>Test your logical thinking with Sudoku. Fill the grid so that every row, column, and box contains numbers from 1 to 9 without repetition.</p>
<a href="html/sudoku.html" class="btn">Play Sudoku</a>
</div>
<div class="game">
<h2>Kakuro</h2>
<p>Solve Kakuro puzzles by filling the grid with numbers that add up to the target sums, using only numbers between 1-9 with or without repetition.</p>
<a href="html/kakuro.html" class="btn">Play Kakuro</a>
</div>
</main>
</div>
</body>
</html>