2023-03-28 18:54:52 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Pokemon Rogue Battle</title>
|
|
|
|
<style type="text/css">
|
|
|
|
@font-face {
|
|
|
|
font-family: 'emerald';
|
|
|
|
src: url('fonts/pokemon-emerald-pro.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'pkmnems';
|
|
|
|
src: url('fonts/pkmnems.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
background: #484050;
|
|
|
|
}
|
2023-04-11 03:24:16 +00:00
|
|
|
|
|
|
|
#app {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-03-28 18:54:52 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script type="module" src="src/main.ts"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|