DNA transcription and translation in wasm with rust
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> <meta name="description" content="Easily transcribe and translate DNA into messenger RNA and amino acids"> <meta name="application-name" content="DNA Transcription and Translation App"> <meta name="theme-color" content="#568ea3"> <title>DNA Transcription & Translation</title> <link rel="stylesheet" href="/css/styles.css"> <!-- DNA Icons by Twemoji. Generated using favicon.io --> <link rel="apple-touch-icon" sizes="180x180" href="/static/icons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/static/icons/favicon-16x16.png"> <link rel="manifest" href="/static/site.webmanifest"> </head> <body> <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript> <div class="main-heading"> <h1><a href="#">DNA Transcription & Translation</a></h1> </div> <div class="input-div-container"> <div class="input-div"> <form class="dna-input" action="app.html" method="get"> <label> <h1>Please enter the DNA strand in the space below:</h1><br /> <input type="text" name="strand" placeholder="DNA Strand" class="input-box"> </label> <input type="submit" value="Submit" class="input-submit"> </form> </div> </div> <div id="footer"> <p>© 2021 Ravi Shah</p> <p><a href="https://github.com/Rav4s/wasm-dna-transcription-translation">Source Code</a></p> <br /> </div> </body></html>
|