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.

34 lines
1.4 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="main-heading">
  15. <h1><a href="#">DNA Transcription &amp; Translation</a></h1>
  16. </div>
  17. <div class="input-div-container">
  18. <div class="input-div">
  19. <form class="dna-input" action="app.html" method="get">
  20. <label>
  21. <h1>Please enter the DNA strand in the space below:</h1><br />
  22. <input type="text" name="strand" placeholder="DNA Strand" class="input-box">
  23. </label>
  24. <input type="submit" value="Submit" class="input-submit">
  25. </form>
  26. </div>
  27. </div>
  28. <div id="footer">
  29. <p>© 2021 Ravi Shah</p>
  30. <p><a href="https://github.com/Rav4s/wasm-dna-transcription-translation">Source Code</a></p>
  31. <br />
  32. </div>
  33. </body>
  34. </html>