Difference between revisions of "HTML: Nucleotide Fun"
| Line 1: | Line 1: | ||
Note: This code will only run with PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]  | Note: This code will only run with PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]  | ||
.  | .  | ||
| − | <syntaxhighlight lang="html5">  | + | <syntaxhighlight lang="html5" enclose="div">  | 
<html>  | <html>  | ||
   <head>  |    <head>  | ||
Revision as of 03:34, 18 January 2014
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>
  | |||||||||||||||||||||||