23 lines
749 B
HTML
23 lines
749 B
HTML
<!DOCTYPE html>
|
|
<html lang ="en">
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
|
|
<title>web_tool</title>
|
|
</head>
|
|
<body>
|
|
<div class="input_field">
|
|
<input type="text" id="input"/>
|
|
<button onclick = "convert_input()"> send </button>
|
|
|
|
</div>
|
|
<div id="response_container" class="response_container">
|
|
<div id="response_text" class="response_text"></div>
|
|
<div class="response_button">
|
|
<button onclick="copy_to_clipboard()">📋</button>
|
|
</div>
|
|
</div>
|
|
<script src="frontend.js" defer></script>
|
|
</body>
|
|
</html> |