Advertisement
Krissy

SemanticWeb_03LinkedIN

Nov 20th, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>LinkedIn</title>
  5.         <meta charset="utf-8" />
  6.         <script src="dist/html5shiv.js"></script>
  7.     </head>
  8.     <body>
  9.         <form>
  10.             <header>
  11.             <h1> <a href = "#"> LinkedIn </a></h1>
  12.             <nav>  
  13.                 <ul>
  14.                     <li> <a href = "#">Home</a></li>
  15.                     <li> <a href = "#">What is LinkedIn?</a></li>
  16.                     <li> <a href = "#">Join Today</a></li>
  17.                 </ul>  
  18.             </nav>
  19.                 <ul>
  20.                     <li>
  21.                         <fieldset>
  22.                             <legend>Sign In</legend>
  23.                                 <ul style = "circle">
  24.                                     <li>Email: <input type = "text"/></li>
  25.                                     <li>Password: <input type = "password"/></li>
  26.                                     <li><input type = "button" id = "SignIn" value = 'Sign In'/></li>
  27.                                 </ul>
  28.                         </fieldset>
  29.                     </li>
  30.                 </ul>
  31.             </header>
  32.             <hr />
  33.             <section>
  34.                 <header>
  35.                     <h2>Over 175 million professionals use LinkedIn to exchange information, ideas and opportunities</h2>
  36.                 </header>
  37.                     <ul>
  38.                         <li>Stay informed about your contacts and industry</li>
  39.                         <li>Find the people and knowledge you need to achieve your goals</li>
  40.                         <li>Control your professional identity online </li>
  41.                     </ul>
  42.             </section>
  43.             <aside>
  44.                 <header>
  45.                     <h3>Join LinkedIn Today</h3>
  46.                 </header>
  47.                 <fieldset>
  48.                         <legend>Sign Up</legend>
  49.                             <ul style = "disc">
  50.                                 <li><label for="FN">First Name:</label><input type = "text" id = "FN"/></li>
  51.                                 <li><label for="LN">Last Name:</label><input type = "text" id = "LN"/></li>
  52.                                 <li><label for="Email">Email:</label><input type = "text" id = "Email"/></li>
  53.                                 <li><label for="Password">Password:</label><input type = "password" id = "Password"/></li>
  54.                             </ul>
  55.                             <p> 6 or more characters</p>
  56.                             <input type = "button" value = 'Join Now'/>*
  57.                             <p>Already on LinkedIn?<a href = "#">Sign In</a></p>
  58.                 </fieldset>
  59.             </aside>
  60.             <footer>
  61.                     <h3>Search for someone by name:</h3>
  62.                     <ul style = "disc">
  63.                         <li>First Name: <input type = "text" value = "First Name"/></li>
  64.                         <li>Last Name: <input type = "text" value = "Last Name"/></li>
  65.                     </ul>
  66.                     <input type = "button" id = "Go" value = 'Go'/>
  67.             </footer>
  68.         </form>
  69.     </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement