Advertisement
Guest User

Full Circle #65 - WebDev CRUD

a guest
Sep 15th, 2012
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <title>Page Title</title>
  6.     <meta name="description" content="Page Description" />
  7.     <meta name="keywords" content="Page Keywords" />
  8.     <meta name="author" content="Author Name" />
  9.     <meta name="robots" content="index, follow all" />
  10.     <meta name="viewport" content="width=device-width" />
  11.     <link rel="stylesheet" type="text/css" href="css/style.css" />
  12. </head>
  13.  
  14. <body>
  15.     <header>
  16.         <h1>FCM - UbuntuVers CRUD</h1>
  17.     </header>
  18.  
  19.     <article>
  20.         <form>
  21.             <label for="ubuVersNum">Version</label>
  22.             <input type="text" name="ubuVersNum" id="ubuVersNum" value="" placeholder="10.04 LTS" />
  23.             <label for="ubuVersName">Release Name</label>
  24.             <input type="text" name="ubuVersName" id="ubuVersName" value="" placeholder="Lucid Lynx" />
  25.             <input type="submit" name="submit" value="Add" />
  26.         </form>
  27.     </article>
  28.  
  29.     <footer>
  30.         <h3>Footer Rock</h3>
  31.     </footer>
  32.    
  33.     <script type="text/javascript" src="js/main.js"></script>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement