-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeygenerate.html
39 lines (39 loc) · 970 Bytes
/
keygenerate.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Key Generation</title>
<style>
table,
th, td {
border: 1px solid #e7e7e7;
}
.project {
background-color: #8ebdc7;
color: rgb(0, 0, 0);
display: flex;
align-items: baseline;
justify-content: center;
text-align: center;
height: 100vh;
}
.color {
color: rgb(0, 24, 15);
display: flex;
flex-direction: row;
}
</style>
</head>
<h1 style="text-align: center; color: rgb(0, 2, 138);">Key Generator⌨️</h1>
<body>
<div class="project">
<div id="insert">
<div class="key">
Click anywhere to see Magic🪄🪄
</div>
</div>
</div>
<script src="keygenerate.js"></script>
</body>
</html>