diff options
author | Jesús <heckyel@hyperbola.info> | 2020-10-07 16:41:31 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-10-07 16:41:31 -0500 |
commit | 2fbc11eaf9ecd2f6517da6cdd5da5b2b7658186f (patch) | |
tree | ee818692cdc1dd59b4f47f2211440b05ed3ed3be /index.html | |
parent | 47852389623f373987df3f378162b193bece97ba (diff) | |
download | web-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.html | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -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> |