diff options
author | dweller <dweller@cabin.digital> | 2024-02-11 02:34:50 +0200 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-02-11 02:34:50 +0200 |
commit | 50976da906430eb00997c04842206dd6d88aea2d (patch) | |
tree | 4e975ee5ad1e7121c77daeeca5ac84b181737acd /index.html |
Initial commit. Google-like design.
Diffstat (limited to '')
-rw-r--r-- | index.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..078e0c8 --- /dev/null +++ b/index.html @@ -0,0 +1,75 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + + <title>Manup               Lonely MAN near You</title> + + <link rel="icon" type="image/png" sizes="128x128" href="imgs/logo-goog.png"/> + <link rel="icon" type="image/png" sizes="32x32" href="imgs/logo-goog32.png"/> + <link rel="icon" type="image/png" sizes="16x16" href="imgs/logo-goog16.png"/> + <!--<link rel="icon" type="image/x-icon" sizes="16x16" href="imgs/logo-goog16.ico"/>--> + + <link rel="stylesheet" href="style/normalize.css"/> + <link rel="stylesheet" href="style/main.css"/> + <link rel="stylesheet" href="style/man.css"/> + </head> + <body> + <div id="main"> + <header> + <nav id="topnav"> + <a href="https://cabin.digital">Cabin</a> + <a href="#">Pages</a> + <a href="#"><span id="topnav_icon"></span></a> + <button class="btn-acc">Man up</button> + </nav> + </header> + <section id="logo"> + <h1> + <span id="gc-let">Let</span> + <span id="gc-me">me</span> + <code id="gc-man">man</code> + <span id="gc-that">that</span> + <span id="gc-for">For</span> + <span id="gc-you">you</span> + </h1> + <div id="version_wrap"> + <span id="version">BETA!</span> + </div> + </section> + <nav id="search_pane"> + <form> + <div id="query_wrap"> + <div id="query_icon"></div> + <input id="query" type='text' value='' name='query' required autofocus/> + </div> + <div> + <input id="mank" type='submit' value='man -k' name='action' title="apropos(1)"/> + <input id="man" type='submit' value='man' name='action' title="Feeling lucky, punk?"/> + </div> + </form> + <p class="hint center">Write "man" if you have no idea what to do...</p> + </nav> + + <footer> + <p class="center"> + Copyleft <span class="copyleft">©</span> 2024 + <a href="mailto:manup@cabin.digital">dweller</a> from + <a href="https://cabin.digital">cabin.digital</a>. + All Wrongs Reserved. + </p> + </footer> + <nav id="about_pane"> + <section> + <a href="#">About</a> + </section> + <section> + <a href="#">Credits</a> + <a href="#">Contact</a> + <a href="#">Settings</a> + </section> + </nav> + </div> + </body> +</html> |