-
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.
rewrite using dolphin-llama3 8b
- Loading branch information
Showing
1 changed file
with
4 additions
and
22 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 |
---|---|---|
@@ -1,29 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>OpenAI vs Zuckerberg Pac-Man Game</title> | ||
<style> | ||
/* Add some basic styling to make it look like a game */ | ||
body { | ||
background-color: #f0f0f0; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
#game-container { | ||
width: 400px; | ||
height: 400px; | ||
border: 1px solid black; | ||
margin: 40px auto; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
</style> | ||
<meta charset="UTF-8"> | ||
<title>Pacman Game</title> | ||
</head> | ||
<body> | ||
<div id="game-container"></div> | ||
<script src="game.js"></script> | ||
<canvas id="game-canvas" width="400" height="400"></canvas> | ||
<script src="pacman.js"></script> | ||
</body> | ||
</html> |