17 lines
442 B
HTML
17 lines
442 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta
|
||
|
|
name="viewport"
|
||
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
|
||
|
|
/>
|
||
|
|
<title>Negopoly | Rules</title>
|
||
|
|
<link rel="stylesheet" href="./rules.css" />
|
||
|
|
</head>
|
||
|
|
<body class="page-rules">
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="./rules.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|