commit c2e332b08578cf3749bc05c84f83a9f8998e9e43 parent 36ba3215519a00ee6d3003d11a1d490d49eca9b5 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Sun, 28 Jul 2024 14:37:11 +0200 fix: create header Diffstat:
M | index.php | | | 27 | +++++++++++++++------------ |
1 file changed, 15 insertions(+), 12 deletions(-)
diff --git a/index.php b/index.php @@ -1,22 +1,25 @@ <!DOCTYPE HTML> <html> <head> - <title>Traffic</title> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> - <link rel="stylesheet" href="assets/css/simple.min.css" /> + <title>Traffic</title> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> + <link rel="stylesheet" href="assets/css/simple.min.css" /> + <style> + .button { margin: 5px; } + </style> </head> <body> - <nav> - <ul> - <li><a href="all/">All Time</a></li> - <li><a href="#year">Yearly</a></li> - <li><a href="#month">Monthly</a></li> - <li><a href="#week">Weekly</a></li> - </ul> - </nav> + <header> + <nav> + <a href="all/">All Time</a> + <a href="#year">Yearly</a> + <a href="#month">Monthly</a> + <a href="#week">Weekly</a> + </nav> + </header> <!-- Description --> <h1>Traffic</h1>