-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 1.29 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 1.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keyboard Test</title>
</head>
<style>
body {
padding: 0;
margin: 0;
background-color: rgb(24,18,3);
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 2rem;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
* {
box-sizing: border-box;
}
div {
width: 650px;
height: 650px;
transform: translateX(-50%,-50%);
transform: translateY(-50%,-50%);
background-color: rgb(45,45,65);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
font-weight: 600;
white-space: nowrap;
text-transform: uppercase;
}
h1 {
margin: 100px;
position: absolute ;
top: 0;
color: white;
font-size: 100px;
line-height: 2.5rem;
}
</style>
<body>
<h1>
KEYBOARD TEST
</h1>
<div>
<span id="output">Bir Tuşa Bas</span>
</div>
<script src="app.js">
</script>
</body>
</html>