16 lines
492 B
HTML
16 lines
492 B
HTML
|
<!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>
|