Advertisement
Guest User

index.html

a guest
Oct 22nd, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3.     <head>
  4.         <title>HackHolic - Code Sharing Website</title>
  5.         <meta charset="utf-8">
  6.         <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  7.         <link href="style.css" rel="stylesheet" type="text/css">
  8.     </head>
  9.     <body>
  10.        <div id="container">
  11.         <nav id="navigationbar">
  12.            <ul>
  13.                <li><a href="#" class="links"></a></li>
  14.                <li><a href="#" class="links">Explore</a></li>
  15.                <li><a href="#" class="links">About</a></li>
  16.                <li><a href="#" class="links">Blog</a></li>
  17.                <li><a href="#" class="signin">Sign up</a></li>
  18.            </ul>
  19.         </nav>
  20.         </div>
  21.         <div id="signupdiv">
  22.             <div id="signupboxtext">
  23.                 <h1 style="font-size: 55px;">Code, Edit, Publish</h1>
  24.                 <p>A place to collaborate and share your code for people all around the world.</p>
  25.                 <form>
  26.                     <input type="text" maxlength="20" placeholder="Username">
  27.                     <input type="password" maxlength="15" placeholder="Password">
  28.                     <a href="#">Sign In</a>
  29.                 </form>
  30.             </div>
  31.         </div>
  32.         <div id="socialmedia">
  33.             <img src="assets/fb.png">
  34.         </div>
  35.     </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement