diff options
author | xengineering <me@xengineering.eu> | 2025-04-10 21:02:19 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-04-10 21:02:19 +0200 |
commit | 29dfea5e6def230b677116f175f6e67d968b92a9 (patch) | |
tree | 18061b013c0819ee60265d24a68d655d1b2c7056 | |
parent | 98c95039f1c505d8e6fe892888036d5c48dc398d (diff) | |
download | iot-contact-29dfea5e6def230b677116f175f6e67d968b92a9.tar iot-contact-29dfea5e6def230b677116f175f6e67d968b92a9.tar.zst iot-contact-29dfea5e6def230b677116f175f6e67d968b92a9.zip |
web: Fix layout
simple.css requires to use the `<main>` tag for the main page content.
Otherwise the spacing between page elements is way too large.
-rw-r--r-- | web/index.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/web/index.html b/web/index.html index db5ee03..1f23096 100644 --- a/web/index.html +++ b/web/index.html @@ -7,19 +7,21 @@ <title>IoT contact</title> </head> <body> - <h1>IoT contact</h1> + <main> + <h1>IoT contact</h1> - <h4>Printed circuit board</h4> - <ul> - <li><a href="schematic.pdf">schematic.pdf</a></li> - <li><a href="bill-of-materials.csv">bill-of-materials.csv</a></li> - </ul> + <h4>Printed circuit board</h4> + <ul> + <li><a href="schematic.pdf">schematic.pdf</a></li> + <li><a href="bill-of-materials.csv">bill-of-materials.csv</a></li> + </ul> - <h4>Firmware</h4> - <ul> - <li><a href="application.signed.bin">application.signed.bin</a></li> - <li><a href="bootloader.bin">bootloader.bin</a></li> - <li><a href="simulation-linux-amd64.exe">simulation-linux-amd64.exe</a></li> - </ul> + <h4>Firmware</h4> + <ul> + <li><a href="application.signed.bin">application.signed.bin</a></li> + <li><a href="bootloader.bin">bootloader.bin</a></li> + <li><a href="simulation-linux-amd64.exe">simulation-linux-amd64.exe</a></li> + </ul> + </main> </body> </html> |