-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 924 Bytes
/
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Title</title>
<script src="js/brain.js"></script>
<script src="js/script.js" defer></script>
<style>
#color {
width: 200px;
height: 200px;
border: 5px solid black;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.white {
color: white;
}
</style>
</head>
<body>
<div id="diagram"></div>
<div id="color">
<div class="white">White Text</div>
<div>Black Text</div>
<div id="guess">Guess Text</div>
</div>
<button id="white-button">White</button>
<button id="black-button">Black</button>
<button id="print-button">Print</button>
</body>
</html>