Add parabolic flying

This commit is contained in:
Idrees Hassan
2024-12-16 17:12:53 -05:00
parent 90846b5c43
commit 93c5c47cac
5 changed files with 218 additions and 64 deletions

View File

@@ -8,12 +8,23 @@
html, body {
margin: 0;
padding: 0;
overflow: hidden;
/* background-color: #363636; */
}
#spacer {
height: 100vh;
}
</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 src="birb.js"></script>
</body>
</html>