Advertisement
slayen_dev

wordstory.html

Aug 2nd, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.26 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>wordstory.html</title>
  6.     <link rel = "stylesheet"
  7.         type = "text/css"
  8.         href = "wordStory.css" />
  9.     <script type="text/javascript"
  10.             src = "wordStory.js">
  11.     </script>
  12. </head>
  13. <body>
  14.     <h1>Word Story</h1>
  15.     <form action=" ">
  16.         <fieldset>
  17.             <label for = "txtBoy">Boy's name</label>
  18.             <input type = "text"
  19.                 id = "txtBoy" />
  20.            
  21.             <label for = "txtGirl">Girl's name</label>
  22.             <input type = "text"
  23.                 id = "txtGirl" />
  24.            
  25.             <label for = "txtGeol">Geological formation</label>
  26.             <input type = "text"
  27.                 id = "txtGeol" />
  28.            
  29.             <label for = "txtVerb">Verb</label>
  30.             <input type = "text"
  31.                 id = "txtVerb" />
  32.            
  33.             <label for = "txtContainer">Container</label>
  34.             <input type = "text"
  35.                 id = "txtContainer" />
  36.            
  37.             <label for = "txtLiquid">Liquid</label>
  38.             <input type = "text"
  39.                 id = "txtliquid" />
  40.            
  41.             <label for = "txtPart">Body Part</label>
  42.             <input type = "text"
  43.                 id = "txtPart" />
  44.            
  45.             <label for = "txtGerund">ing Verb</label>
  46.             <input type = "text"
  47.                 id = "textGerund" />
  48.            
  49.             <button type = "button"
  50.                 onclick = "tellStory()">
  51.                 tell the story
  52.             </button>
  53.         </fieldset>
  54.     </form>
  55.     <div id = "output"></div>      
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement