aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-10-07 16:41:31 -0500
committerJesús <heckyel@hyperbola.info>2020-10-07 16:41:31 -0500
commit2fbc11eaf9ecd2f6517da6cdd5da5b2b7658186f (patch)
treeee818692cdc1dd59b4f47f2211440b05ed3ed3be /index.html
parent47852389623f373987df3f378162b193bece97ba (diff)
downloadweb-base-2fbc11eaf9ecd2f6517da6cdd5da5b2b7658186f.tar.lz
web-base-2fbc11eaf9ecd2f6517da6cdd5da5b2b7658186f.tar.xz
web-base-2fbc11eaf9ecd2f6517da6cdd5da5b2b7658186f.zip
initial HTML markup
Diffstat (limited to 'index.html')
-rw-r--r--index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/index.html b/index.html
index e69de29..c912ed7 100644
--- a/index.html
+++ b/index.html
@@ -0,0 +1,35 @@
+<!doctype html>
+<html lang="xyz">
+ <head>
+ <meta charset="UTF-8"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+ <title>Web base</title>
+ <link href="normalize.css" rel="stylesheet"/>
+ <link href="grid.css" rel="stylesheet"/>
+ </head>
+ <body>
+ <header class="header">
+ <label class="navbar-burger" for="navbar-toggle-cbox" data-target="navMenu">
+ <span></span>
+ <span></span>
+ <span></span>
+ </label>
+ <a class="logo-name" href="#" rel="home">
+ <h1 class="title">Name</h1>
+ </a>
+
+ <div id="navMenu" class="navbar-menu">
+ <ul class="navbar-end">
+ <li><a href="#" class="navbar-item is-active">Home</a></li>
+ <li><a href="#" class="navbar-item">Service</a></li>
+ <li><a href="#" class="navbar-item">About us</a></li>
+ <li><a href="#" class="navbar-item">Login</a></li>
+ <li><a href="#" class="navbar-item">Earn Money</a></li>
+ </ul>
+ </div>
+
+ </header>
+ <main class="main"></main>
+ <footer class="footer"></footer>
+ </body>
+</html>