31 lines
662 B
HTML
31 lines
662 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Mancala</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/x-icon" href="mancala.svg">
|
|
</head>
|
|
<body style="margin: 0px;">
|
|
<div id="main" style="display: flex;"></div>
|
|
<script type="module" src="./App.tsx"></script>
|
|
</body>
|
|
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
|
|
|
|
<style>
|
|
html{
|
|
height: 100%;
|
|
}
|
|
|
|
body{
|
|
height: 100%;
|
|
}
|
|
|
|
#main{
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</html> |