-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.24 KB
/
index.html
File metadata and controls
48 lines (37 loc) · 1.24 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
<!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">
<title>KeyCode Challenge</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="welcome-msg" class="glass-10">
Press Any Key to get JavaScript Event KeyCode Info
</div>
<div id="main-content" class="nice-border glass-10">
<div>Press any key to get it's key code information.</div>
<div id="keypress-div" class="nice-border"></div>
<div id="box-container" >
<div class="key-box">
<div>Code</div>
<div id="ev-code"></div>
</div>
<div class="key-box">
<div>Key</div>
<div id="ev-key">dd</div>
</div>
<div class="key-box">
<div>Which</div>
<div id="ev-which"></div>
</div>
<div id="ev-ctrl" class="modi-keys">Ctrl</div>
<div id="ev-shift" class="modi-keys">Shift</div>
<div id="ev-alt" class="modi-keys">Alt</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>