diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-11-08 16:12:32 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-11-08 16:12:32 -0500 |
commit | 4ceef6633c750157645d03225b07b739ca893c49 (patch) | |
tree | 1be04b40f3dbbca4eb8319f2e65d16b18e15f157 /index.html | |
parent | 76ee3a9bb9c865a6f5c37de8613a62b48e1a1c93 (diff) |
Basic site framework
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..88ee401 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>OpenSmarts</title> + <link rel="stylesheet" href="styles/main.css" /> +</head> +<body> + <user> + <img id="profile" src="assets/profile.png" /> + </user> + + <nav> + <a class="nav-el" href="#">Dashboard</a> + <a class="nav-el" href="#">Manage Devices</a> + <a class="nav-el" href="#">Alerts</a> + <a class="nav-el" href="#">Settings</a> + <a class="nav-el" href="#">Home Automation</a> + </nav> + + <script src="scripts/main.js"></script> +</body> +</html>
\ No newline at end of file |