mancala/src/index.html

30 lines
603 B
HTML
Raw Normal View History

2021-06-27 02:34:43 +03:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2021-06-29 03:29:30 +03:00
<title>Mancala</title>
2021-06-27 02:34:43 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
2021-06-30 16:11:22 +03:00
<body style="margin: 0px;">
<div id="main" style="display: flex;"></div>
2022-07-15 14:15:28 +03:00
<script type="module" src="./App.tsx"></script>
2021-06-27 02:34:43 +03:00
</body>
2021-06-30 16:11:22 +03:00
2022-06-04 20:54:19 +03:00
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
2021-06-30 16:11:22 +03:00
<style>
html{
height: 100%;
}
body{
height: 100%;
}
#main{
height: 100%;
}
</style>
2021-06-27 02:34:43 +03:00
</html>