pokemon / index.html
akhaliq's picture
akhaliq HF staff
Upload 8 files
89d3000 verified
raw
history blame contribute delete
680 Bytes
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Pokémon Red Clone</title><style>body {
margin: 0;
padding: 0;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
#game-container {
width: 100%;
max-width: 800px;
height: 100%;
max-height: 600px;
}</style><script defer="defer" src="bundle.js"></script></head><body><div id="game-container"></div></body></html>