-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a824c2f
commit e612253
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Langton's Ant Game</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> | ||
<link rel="icon" href="site-data/favicon.ico" type="image/x-icon"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="site-data/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="site-data/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="site-data/favicon-16x16.png"> | ||
<link rel="manifest" href="site-data/site.webmanifest"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="intro-box" id="introBox"> | ||
<h1>Langton's Ant Game</h1> | ||
<p>A simulation of an ant's movement based on simple rules.</p> | ||
<button id="beginButton">Begin</button> | ||
</div> | ||
<div class="game-box" id="gameBox" style="display: none;"> | ||
<canvas id="gameCanvas" width="400" height="400"></canvas> | ||
<div class="controls"> | ||
<button id="pauseButton">Pause</button> | ||
<label for="speedInput">Speed: </label> | ||
<input type="number" id="speedInput" value="500"> | ||
<button id="applyButton">Apply</button> | ||
</div> | ||
</div> | ||
</div> | ||
<footer> | ||
<a href="https://discord.com/invite/2nHHHBWNDw" target="_blank"> | ||
<i class="fab fa-discord"></i> | ||
</a> | ||
<a href="https://ko-fi.com/thatsinewave" target="_blank"> | ||
<i class="fas fa-heart"></i> | ||
</a> | ||
<a href="https://github.com/ThatSINEWAVE/Langton-Ant-Game" target="_blank"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
</footer> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |