-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Virtual keyboard</title>
<link rel="stylesheet" type="text/css" href="virtualkeyboard-style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
</head>
<body>
<h1>Virtual Keyboard w/ HTML, CSS & JS</h1>
<hr>
<div id="container">
<div id="features">
<h3>Features</h3>
<ul id="list">
</ul>
</div>
<textarea id="input1" rows="10" cols="50"></textarea>
</div>
<div class="keyboard">
<div id="numbers"></div>
<div id="alphabet1"></div>
<div id="alphabet2"></div>
<div id="alphabet3"></div>
<div id="spacekey"></div>
</div>
<script src="virtualkeyboard-script.js"></script>
</body>
</html>