Advertisement
Guest User

jQuery Testing HTML Page

a guest
Jan 28th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.41 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Testing jQuery</title>
  4. </head>
  5. <body>
  6.     <p>Hello World!</p>
  7.     <p class="foo">Another paragraph, but this one has a class of "foo".</p>
  8.     <p><span>This is a span inside a paragraph.</span></p>
  9.     <p id="bar">Paragraph with an id of "bar".
  10.         <span class="foo">And this sentence is in a span with a class of "foo".</span>
  11.     </p>
  12.  
  13.     <form action="#" method="post">
  14.         <fieldset>
  15.             <legend>Sign Up Form</legend>
  16.             <label for="name">Name</label><br />
  17.             <input name="name" type="text" /><br />
  18.             <label for="password">Password</label><br />
  19.             <input name="password" type="password" /><br /><br />
  20.             <label>
  21.                 <input type="radio" name="loc" /> I'm on my computer
  22.             </label><br />
  23.             <label>
  24.                 <input type="radio" name="loc" checked="checked" />
  25.                 I'm on a shared computer
  26.             </label><br /><br />
  27.             <input type="submit" value="Log In" /><br />
  28.             <label>
  29.                 <input type="checkbox" name="notify" disabled="true" />
  30.                 Keep me signed in on this computer
  31.             </label><br />
  32.         </fieldset>
  33.     </form>
  34.  
  35.     <script src="https://code.jquery.com/jquery-3.4.1.js"
  36.    integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
  37.    crossorigin="anonymous"></script>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement