diff options
| author | dvs1 | 2024-12-16 14:45:19 +1000 |
|---|---|---|
| committer | dvs1 | 2024-12-16 14:45:19 +1000 |
| commit | 5c987cb37297cec02f86557e23522be3493912c1 (patch) | |
| tree | e69f44947305c52f75600be52e2e9f607ff9e430 /menu.HTML | |
| parent | Add about and testing sub sites, and stuff everything into menus. (diff) | |
| download | notYetAnotherWiki-5c987cb37297cec02f86557e23522be3493912c1.zip notYetAnotherWiki-5c987cb37297cec02f86557e23522be3493912c1.tar.gz notYetAnotherWiki-5c987cb37297cec02f86557e23522be3493912c1.tar.bz2 notYetAnotherWiki-5c987cb37297cec02f86557e23522be3493912c1.tar.xz | |
The results after actually running the thing.
Committing these for now, so we don't have to setup luarocks and such
elsewhere.
Diffstat (limited to '')
| -rw-r--r-- | menu.HTML | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/menu.HTML b/menu.HTML new file mode 100644 index 0000000..df05661 --- /dev/null +++ b/menu.HTML | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html> | ||
| 3 | <head> | ||
| 4 | <meta charset="utf-8"> | ||
| 5 | <meta name="generator" contents="lcmark"> | ||
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | ||
| 7 | <title></title> | ||
| 8 | <link rel="icon" type="image/png" href="" /> | ||
| 9 | <style> | ||
| 10 | html { | ||
| 11 | font-family: sans-serif; | ||
| 12 | } | ||
| 13 | |||
| 14 | * { | ||
| 15 | box-sizing: border-box; | ||
| 16 | } | ||
| 17 | |||
| 18 | body { | ||
| 19 | margin: 0; | ||
| 20 | } | ||
| 21 | |||
| 22 | .menuBox { | ||
| 23 | position: fixed; | ||
| 24 | height: 100%; | ||
| 25 | width: 10%; | ||
| 26 | } | ||
| 27 | |||
| 28 | menu { | ||
| 29 | list-style-type: none; | ||
| 30 | padding: 5px; | ||
| 31 | } | ||
| 32 | |||
| 33 | </style> | ||
| 34 | </head> | ||
| 35 | <body bgcolor="black" text="white" alink="red" link="blue" vlink="purple"> | ||
| 36 | <nav class="menuBox"> | ||
| 37 | <ul> | ||
| 38 | <li><a href="index.HTML">home</a></li> | ||
| 39 | <li><a href="TODO.HTML">TODO</a></li> | ||
| 40 | </ul> | ||
| 41 | |||
| 42 | </nav> | ||
| 43 | </body> | ||
| 44 | </html> | ||
