Difference between revisions of "HTML: Nucleotide Fun"
| Line 1: | Line 1: | ||
| − | Note: This code will only run with PHP file also   | + | Note: This code will only run with PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]  | 
.  | .  | ||
<syntaxhighlight lang="html5">  | <syntaxhighlight lang="html5">  | ||
Revision as of 02:14, 25 October 2013
Note: This code will only run with PHP file that is also titled Nucleotide Fun .
<html>
  <head>
    <title>Nucleotide Test</title>
  </head>
  
  <body>
    <h1>Please enter a nucleotide sequence (DNA or RNA)</h1>
    <form action = "nucleotide.php" method = "get">
      <input name = "seq" type = "text"></input>
      <input type = "submit" value = "submit"></input>
    </form>
  </body>
</html>
  | |||||||||||||||||||||||