mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-25 19:59:38 +00:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Birb Sandbox</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #363636;
|
|
}
|
|
|
|
#spacer {
|
|
height: 100vh;
|
|
}
|
|
|
|
:root {
|
|
--border-size: 2px;
|
|
--neg-border-size: calc(var(--border-size) * -1);
|
|
--double-border-size: calc(var(--border-size) * 2);
|
|
--neg-double-border-size: calc(var(--neg-border-size) * 2);
|
|
--border-color: #000000;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="text-align: center; padding: 20px;">
|
|
<h1>This is an example header</h1>
|
|
<p>This is an example paragraph</p>
|
|
<img src="./images/bird-1.jpg" alt="Bird 1" style="width: 300px; height: auto; margin: 10px;">
|
|
<img src="./images/bird-2.jpg" alt="Bird 2" style="width: 300px; height: auto; margin: 10px;">
|
|
<img src="./images/bird-3.jpg" alt="Bird 3" style="width: 300px; height: auto; margin: 10px;">
|
|
</div>
|
|
<div id="spacer"></div>
|
|
<!-- <script type="module" src="spritesheet-compiler.js"></script> -->
|
|
<script src="birb.js"></script>
|
|
</body>
|
|
</html> |