diff options
| author | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-16 00:08:34 +0100 |
|---|---|---|
| committer | Abdellah El Morabit <nsrddyn@gmail.com> | 2024-11-16 00:08:34 +0100 |
| commit | 3714c08a1233884696e0f5483d73efa890e1a5a1 (patch) | |
| tree | ee14f6cba33139eec3864567807cdbecd8990aa9 /webconsole | |
| parent | 5588a6c6b4d944e0342d5bd3ea54c3dda6aec4d4 (diff) | |
working on the general app + updates to the read me file, also fixed the i2c display not working properly, still wanting to optimize it though for text overflow
Diffstat (limited to 'webconsole')
| -rw-r--r-- | webconsole/index.html | 17 | ||||
| -rw-r--r-- | webconsole/styles.css | 8 |
2 files changed, 23 insertions, 2 deletions
diff --git a/webconsole/index.html b/webconsole/index.html index 812011f..33b4ee9 100644 --- a/webconsole/index.html +++ b/webconsole/index.html @@ -1,12 +1,25 @@ <!DOCTYPE html> <html lang="en"> + <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CONSOLE</title> + <link rel="stylesheet" href="styles.css"> + <script src="main.js"></script> </head> + <body> - - + + <nav class="navigation"> + <p>I2C MODES</p> + <button>STATS</button> + <button>AI</button> + <button>TOOLS</button> + <button>MORE</button> + </nav> + + </body> + </html>
\ No newline at end of file diff --git a/webconsole/styles.css b/webconsole/styles.css new file mode 100644 index 0000000..a940b10 --- /dev/null +++ b/webconsole/styles.css @@ -0,0 +1,8 @@ +body { + background-color: teal; +} + +.navigation button { + background-color: none; + border: none; +} |
