-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.76 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>keybourd</title>
<!-- css files -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="contaner">
<div class="ROW">
<button type="button" id="q">Q</button>
<button type="button" id="w">W</button>
<button type="button" id="e">E</button>
<button type="button" id="r">R</button>
<button type="button" id="t">T</button>
<button type="button" id="y">Y</button>
<button type="button" id="u">U</button>
<button type="button" id="i">I</button>
<button type="button" id="o">O</button>
<button type="button" id="p">P</button>
</div>
<div class="ROW">
<button type="button" id="a">A</button>
<button type="button" id="s">S</button>
<button type="button" id="d">D</button>
<button type="button" id="f">F</button>
<button type="button" id="g">G</button>
<button type="button" id="h">H</button>
<button type="button" id="j">J</button>
<button type="button" id="k">K</button>
<button type="button" id="l">L</button>
</div>
<div class="ROW">
<button type="button" id="z">Z</button>
<button type="button" id="x">X</button>
<button type="button" id="c">C</button>
<button type="button" id="v">V</button>
<button type="button" id="b">B</button>
<button type="button" id="n">N</button>
<button type="button" id="m">M</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>