-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (72 loc) · 2.32 KB
/
index.html
File metadata and controls
73 lines (72 loc) · 2.32 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Virtual Keyboard</title>
</head>
<body>
</body>
</html>
<body>
<div class="wrapper">
<h1 class="heading"> Virtual Keyboard </h1>
<textarea id = "display"></textarea>
<div class="keyboard">
<div class="container">
<div class="row">
<button id="1">1</button>
<button id="2">2</button>
<button id="3">3</button>
<button id="4">4</button>
<button id="5">5</button>
<button id="6">6</button>
<button id="7">7</button>
<button id="8">8</button>
<button id="9">9</button>
<button id="0">0</button>
<!-- <button id="Backspace">←</button> -->
</div>
<div class="row">
<button id="A">A</button>
<button id="B">B</button>
<button id="C">C</button>
<button id="D">D</button>
<button id="E">E</button>
<button id="F">F</button>
<button id="G">G</button>
<button id="H">H</button>
<button id="I">I</button>
</div>
<div class = "row">
<button id="J">J</button>
<button id="K">K</button>
<button id="L">L</button>
<button id="M">M</button>
<button id="N">N</button>
<button id="O">O</button>
<button id="P">P</button>
<button id="Q">Q</button>
<button id="R">R</button>
</div>
<div class="row">
<button id="S">S</button>
<button id="T">T</button>
<button id="U">U</button>
<button id="V">V</button>
<button id="W">W</button>
<button id="X">X</button>
<button id="Y">Y</button>
<button id="Z">Z</button>
</div>
<!--<button id="apostrophe" >ok</button> -->
<div class="row">
<button id="spacebar">Spacebar</button>
<button id="enter">↩</button>
</div>
</div>
<script src="./script.js"
></script>
</body>