pokerogue/index.html

39 lines
941 B
HTML
Raw Normal View History

2023-03-28 19:54:52 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-11-19 02:08:04 +00:00
<title>PokéRogue</title>
<meta name="description" content="A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible.">
2023-03-28 19:54:52 +01:00
<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 04:24:16 +01:00
#app {
display: flex;
justify-content: center;
}
2023-03-28 19:54:52 +01:00
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="src/main.ts"></script>
<script src="src/debug.js"></script>
2023-03-28 19:54:52 +01:00
</body>
</html>