chessGame / frontend /index.html
ilhamdev's picture
Upload folder using huggingface_hub
ece5841 verified
raw
history blame
602 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ChessHub</title>
<style>
body {
margin: 0;
width: 100%;
min-width: 420px;
}
</style>
</head>
<body>
<div id="root"></div>
<div
id="main-loader"
></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>