Advertisement
Guest User

Untitled

a guest
May 18th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.51 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>I outsource my homework</title>
  4.         <link rel="stylesheet" type="text/css" href="style.css" />
  5.         <link rel="stylesheet" type="text/css" href="layout.css" />
  6.  
  7.         <script type="text/javascript" src="style.js"></script>
  8.         <link type="text/css" title="style1" href="colour1.css" rel="stylesheet" />
  9.             <link type="text/css" title="style2" href="colour2.css" rel="alternate stylesheet" />
  10.  
  11.         <script type="text/javascript" src="cookies.js"></script>
  12.     </head>
  13.  
  14.     <body>
  15.         <div id="wrap">
  16.             <div id="navi">
  17.                 <a href="index.html">
  18.                     Home</a>
  19.                 <a href="register.html">
  20.                     Register</a>
  21.                 <a href="#">
  22.                     Activity</a>
  23.             </div>
  24.  
  25.             <div id="loggedin">
  26.                 <b id="lol">Sign up!</b>
  27.             </div>
  28.         </div>
  29.        
  30.         <div id="content">
  31.             <form action="" onsubmit="return checkCookie();">
  32.             <table>
  33.                 <tr>
  34.                     <td width="100" height="25">Username:</td>
  35.                     <td><input id="username" type="text" size="30"></td>
  36.                 </tr>
  37.                 <tr>
  38.                     <td width="100" height="25">Password:</td>
  39.                     <td><input id="password" type="text" size="30"></td>
  40.                 </tr>
  41.                 <tr>
  42.                     <td width="100" height="25">Email:</td>
  43.                     <td><input id="email" type="text" size="30"></td>
  44.                 </tr>
  45.  
  46.                 <tr>
  47.                     <td><input type="submit" value="Register!"></td>
  48.                 </td>
  49.                    
  50.             </table>
  51.             </form>
  52.         </div>
  53.  
  54.         <div id="style">
  55.             <a href="#" onclick="setActiveStyleSheet('style1')">Style 1</a>
  56.             /
  57.             <a href="#"  onclick="setActiveStyleSheet('style2')">Style 2</a>
  58.         </div>
  59.     </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement