-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.58 KB
/
index.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
41
42
43
44
45
46
47
48
<!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="keyboard.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<title>Virtual Keyboard</title>
</head>
<body>
<div class="container">
<h1>Virtual Keyboard with HTML , CSS & JS</h1>
<h3>Features</h3>
<ul>
<li>Easy to integrate</li>
<li>Responsive</li>
<li>Using Vanila Javascript</li>
</ul>
<textarea class="use-keyboard-input" name="disp" id="disp" cols="30" rows="10"></textarea>
</div>
<!-- <div class="keyboard">
<div class="keyboard-keys">
<button type="button" class="keyboard-key">a</button>
<button type="button" class="keyboard-key keyboard-key-wide">
<i class="material-icons">backspace</i>
</button>
<button type="button" class="keyboard-key keyboard-key-extra-wide">
<i class="material-icons">space_bar</i>
</button>
<button
type="button"
class="keyboard-key keyboard-key-wide keyboard-key-activable"
>
<i class="material-icons">keyboard_capslock</i>
</button>
<button type="button" class="keyboard-key keyboard-key-wide keyboard-key-dark">
<i class="material-icons">check_circle</i>
</button>
</div>
</div> -->
<script src="keyboard.js"></script>
</body>
</html>