-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_websocketpp.html
40 lines (35 loc) · 999 Bytes
/
index_websocketpp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Converter</title>
<script src="script_websocketpp.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Upper and Lower letters Converter</h1>
<fieldset>
<legend>Converter</legend>
<table>
<tr>
<th><label for="input1">Input:</label></th>
<th class="mid_col"></th>
<th><label for="result">Output:</label></th>
</tr>
<tr>
<td><input type="text" id="input1" name="input1"
class="showbox" placeholder="3Kel"
onkeypress = "if (event.keyCode == 13)
document.getElementById('Covert_B').click()"></td>
<td class="mid_col"> <span>→</span> </td>
<td><label id="result"></label> </td>
</tr>
<tr>
<td></td>
<td class="mid_col"><button id="Covert_B" onclick="convertLetters()">Convert</button></td>
<td></td>
</tr>
</table>
</fieldset>
</body>
</html>