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.

39 lines
1.7 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. <!-- DNA Icons by Twemoji. Generated using favicon.io -->
  12. <link rel="apple-touch-icon" sizes="180x180" href="/static/icons/apple-touch-icon.png">
  13. <link rel="icon" type="image/png" sizes="32x32" href="/static/icons/favicon-32x32.png">
  14. <link rel="icon" type="image/png" sizes="16x16" href="/static/icons/favicon-16x16.png">
  15. <link rel="manifest" href="/static/site.webmanifest">
  16. </head>
  17. <body>
  18. <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
  19. <div class="main-heading">
  20. <h1><a href="#">DNA Transcription &amp; Translation</a></h1>
  21. </div>
  22. <div class="input-div-container">
  23. <div class="input-div">
  24. <form class="dna-input" action="app.html" method="get">
  25. <label>
  26. <h1>Please enter the DNA strand in the space below:</h1><br />
  27. <input type="text" name="strand" placeholder="DNA Strand" class="input-box">
  28. </label>
  29. <input type="submit" value="Submit" class="input-submit">
  30. </form>
  31. </div>
  32. </div>
  33. <div id="footer">
  34. <p>© 2021 Ravi Shah</p>
  35. <p><a href="https://github.com/Rav4s/wasm-dna-transcription-translation">Source Code</a></p>
  36. <br />
  37. </div>
  38. </body>
  39. </html>