Difference between revisions of "HTML: Nucleotide Fun"

From Pathology Education Instructional Resource
Jump to: navigation, search
Line 18: Line 18:
  
 
{{This Is Your Brain On Informatics}}
 
{{This Is Your Brain On Informatics}}
 +
 +
[[Category:This Is Your Brain On Informatics]]

Revision as of 02:39, 19 March 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>