-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
22 lines (22 loc) · 811 Bytes
/
main.html
File metadata and controls
22 lines (22 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<title>NB Card Project 2021</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrap">
<div id="maindiv">
<h1>Nathan Butler's Card Game</h1>
<h3>Main Page</h3>
<p id="round"></p>
<p id="p1"></p>
<p id="p2"></p>
<p id="p3"></p>
<button type="button" id="button1" onclick="round()">Next Round</button>
</div>
<p id="hotkey" style="color: #FFF;text-shadow: 1px 1px 8px #000;">Hotkeys:<br>Space to start next round<br>N to restart the game<br>P to skip to end<br>A to toggle auto round (Off)</p>
</div>
<script src="main.js"></script>
</body>
</html>