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.

30 lines
1.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
  6. <meta name="description" content="Easily transcribe and translate DNA into messenger RNA and amino acids">
  7. <meta name="application-name" content="DNA Transcription and Translation App">
  8. <meta name="theme-color" content="#568ea3">
  9. <title>DNA Transcription &amp; Translation</title>
  10. <link rel="stylesheet" href="/css/styles.css">
  11. </head>
  12. <body>
  13. <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
  14. <div class="input-div-container">
  15. <div class="input-div">
  16. <form class="dna-input" action="app.html" method="get">
  17. <label>
  18. <h1>Please enter the DNA strand in the space below:</h1>
  19. <input type="text" name="strand">
  20. </label>
  21. <input type="submit" value="Submit">
  22. </form>
  23. </div>
  24. </div>
  25. <div id="footer">
  26. <p>© 2021 Ravi Shah</p>
  27. <br />
  28. </div>
  29. </body>
  30. </html>