Difference between revisions of "HTML: Nucleotide Fun"
| Line 1: | Line 1: | ||
Note: This code will only run with PHP file also titles [[PHP: Nucleotide Fun|Nucleotide Fun]]  | Note: This code will only run with PHP file also titles [[PHP: Nucleotide Fun|Nucleotide Fun]]  | ||
| − | + | .  | |
<syntaxhighlight lang="html5">  | <syntaxhighlight lang="html5">  | ||
<html>  | <html>  | ||
Revision as of 05:46, 24 October 2013
Note: This code will only run with PHP file also titles 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>
  | |||||||||||||||||||||||