xmlplus
Version:
A JavaScript framwork for developing projects efficiently.
27 lines • 629 B
HTML
<html>
<head>
<title>井字棋 - 人机对战</title>
<script src="../../../../xmlplus.js"></script>
<script src="index.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
}
</style>
</head>
<body>
<i:TicTacToe xmlns:i="//xp"></i:TicTacToe>
</body>
</html>