Created
December 19, 2019 16:11
-
-
Save BMU-Verlag/29d11e6f1283d43107453631b5ae0c67 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<h2>A Simple Translator</h2> | |
<div class="row"> | |
<select id="source_language"></select> | |
<select id="target_language"></select> | |
<button type="button" id="translate_button">Translate</button> | |
</div> | |
<div class="row"> | |
<textarea id="input"></textarea> | |
<textarea id="translated_text" readonly></textarea> | |
</div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment