Skip to content

Commit

Permalink
Add keyboard dev
Browse files Browse the repository at this point in the history
  • Loading branch information
RaghavK16 committed Oct 19, 2020
1 parent fcda8ae commit 2683bb2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,25 @@
<title>Virtual Keyboard using JS</title>
<link rel="shortcut icon" href="/assets/favicon.ico">
<link rel="stylesheet" href="/assets/dcode.css">
<link rel="stylesheet" href="keyboard/Keyboard.css">
<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</h1>
<h3>Features</h3>
<ul>
<li>Easy to integrate</li>
<li>Responsive</li>
<li>Vanilla JS (<strong>no libraries required!</strong>)</li>
</ul>
<textarea class="use-keyboard-input" style="position: absolute; top: 130px; right: 30px; width: 300px;"></textarea>

<div class="keyboard">
<div class="keyboard__keys">

</div>
</div>

<script src="keyboard/keyboard.js"></script>
</body>
</html>

0 comments on commit 2683bb2

Please sign in to comment.