-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (21 loc) · 1.07 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
<!DOCTYPE html>
<head>
<title>Virtual Keyboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="shortcut icon" href="https://nilayb12.github.io/VirtualKeyboard/keyboard/keyboard.png">
<link rel="stylesheet" href="keyboard/keyboard.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<h1>Virtual Keyboard w/ HTML, CSS & JS (v2)</h1>
<h3>Difference in this keyboard</h3>
<ul>
<li>The keyboard starts with upper case letters</li>
<li>After an input of 1 upper case letter the keyboards switches to lower case letters</li>
<li>After every space input the keyboard switches to upper case letters</li>
<li>After clicking "done" the keyboard returns to the default setting with upper case letters</li>
</ul>
<textarea class="use-keyboard-input" style="position: absolute; top: 130px; right: 30px; width: 300px;"></textarea>
<script src="keyboard/keyboard.js"></script>
</body>