luzhanqi/public/index.html
2022-08-04 22:22:05 +08:00

36 lines
710 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">
<title>陆战棋游戏</title>
<style>
button {
padding: 0.5rem;
color: lightgray;
cursor: pointer;
}
.player1 {
color: black;
}
.player2 {
color: red;
}
</style>
</head>
<body>
<h1>陆战棋游戏</h1>
<h2 id="role"></h2>
<button id="gameButton">玩家1</button>
<script src="/socket.io/socket.io.min.js"></script>
<script src="game.js"></script>
</body>
</html>