Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/ovije (28-Jul @ 15:14)

Syntax Highlighted Code

  1. <form action="contact.php" method="get" id="contactForm">
  2. <table width="100%" border="0" cellspacing="0" cellpadding="3">
  3.     <tr>
  4.         <td>Name:</td>
  5.         <td><input type="text" name="name" value="" id="name" size="50" /></td>
  6.     </tr>
  7.     <tr>
  8.         <td>Email:</td>
  9.         <td><input type="text" name="email" value="" id="email" size="50" /></td>
  10.     </tr>
  11.     <tr>
  12.         <td>Message:</td>
  13.         <td><textarea name="message" cols="50" rows="4" id="message"></textarea></td>
  14.     </tr>
  15.     <tr>
  16.         <td>&nbsp;</td>
  17.         <td><input type="submit" value="Submit" /><input type="reset" value="Reset"></td>
  18.     </tr>
  19. </table>
  20. </form>

Plain Code

<form action="contact.php" method="get" id="contactForm">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
    <tr>
        <td>Name:</td>
        <td><input type="text" name="name" value="" id="name" size="50" /></td>
    </tr>
    <tr>
        <td>Email:</td>
        <td><input type="text" name="email" value="" id="email" size="50" /></td>
    </tr>
    <tr>
        <td>Message:</td>
        <td><textarea name="message" cols="50" rows="4" id="message"></textarea></td>
    </tr>
    <tr>
        <td>&nbsp;</td>
        <td><input type="submit" value="Submit" /><input type="reset" value="Reset"></td>
    </tr>
</table>
</form>

Permalink: http://codedumper.com/ovije