Open main menu

Pathology Education Instructional Resource β

Difference between revisions of "HTML: Nucleotide Fun"

 
(3 intermediate revisions by the same user not shown)
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 the PHP file that is also titled [[PHP: Nucleotide Fun|Nucleotide Fun]]
 
.
 
.
<syntaxhighlight lang="html5">
+
<syntaxhighlight lang="html5" enclose="div">
 
<html>
 
<html>
 
   <head>
 
   <head>
Line 16: Line 16:
 
</html>
 
</html>
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
  
 
{{This Is Your Brain On Informatics}}
 
{{This Is Your Brain On Informatics}}
 +
 +
[[Category:This Is Your Brain On Informatics]]

Latest revision as of 02:41, 19 March 2014

Note: This code will only run with the 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>