study/记忆游戏/index.html

16 lines
492 B
HTML
Raw Normal View History

2022-08-04 04:30:02 +00:00
<!DOCTYPE html>
<html lang="zh">
<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" />
<link rel="stylesheet" href="style.css" />
<title>记忆游戏</title>
</head>
<body>
<h1>记忆游戏 <time id="gameTime"></time> <button id="startButton">重新开始</button></h1>
<div id="gameBoard"></div>
<script src="game.js"></script>
</body>
</html>