diff options
| author | Kumar Damani <me@kumardamani.net> | 2024-08-14 21:12:00 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2024-08-14 21:12:00 +0000 |
| commit | 01daad9389f7368360fb799db48b01ba9439f0ff (patch) | |
| tree | 8f3039c850e21cbad50a3e55f62bf08c550f6704 /public/index.html | |
| parent | cd66828ed8bc688491194db98a1e8fc3499058d4 (diff) | |
bug fixes
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/public/index.html b/public/index.html index 3e445c5..7929e0f 100644 --- a/public/index.html +++ b/public/index.html @@ -19,10 +19,12 @@ <span class="closebtn" onclick="this.parentElement.style.display='none';">×</span> </div> <div class="container"> - <form id="nameForm" class="flex"> - <label style="color: black;" for="firstName">Enter your first name:</label> - <input type="text" id="firstName" placeholder="bob" required> - <button type="submit">Name my Dragon</button> + <form id="nameForm" class="container"> + <label class="flex" for="firstName">Enter your first name:</label> + <input class="flex" type="text" id="firstName" placeholder="bob" required> + <div class="flex"> + <button type="submit">Name my Dragon</button> + </div> </form> <div class="flex"> <button id="stop-music" onclick="stopMusic();">Stop music</button> @@ -40,8 +42,12 @@ <img src="images/dragon-sizes.png" width="50%" alt="Comparison chart for all the dragons"> </div> <footer> - <a href="about.html">How it works</a><br> - <a href="https://kumardamani.net" target="_blank">Author</a> + <div> + <a href="about.html">How it works</a><br> + </div> + <div> + <a href="https://kumardamani.net" target="_blank">Author</a> + </div> </footer> </center> |
