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]] | ||
+ | <syntaxhighlight lang="html5"> | ||
<html> | <html> | ||
<head> | <head> | ||
Line 13: | Line 15: | ||
</body> | </body> | ||
</html> | </html> | ||
+ | </syntaxhighlight> | ||
{{This Is Your Brain On Informatics}} | {{This Is Your Brain On Informatics}} |
Revision as of 05:45, 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>
|