html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XO Game</title>
<script src="https://cdn.jsdelivr.net/npm/iconify-icon@2.1.0/dist/iconify-icon.min.js"></script>
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=berkshire-swash:400" rel="stylesheet" />
</head>
<body>
<iframe src="https://xo-game-flow.vercel.app"></iframe>
</body>
</html>
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
* {
margin: 0;
padding: 0;
outline: none;
cursor: none;
box-sizing: border-box;
text-decoration: none;
}
*::selection {
background: var(--color);
color: var(--active);
}
iframe{
width:100%;
height:100vh;
border:none;
}
js
js
1
BROWSER
Console
Run