-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.06 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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body {
background: pink;
}
div {
display: flex;
}
div.inline {
flex-direction: row;
justify-content: space-around;
}
div.column {
width: 80%;
margin: 5% auto;
flex-direction: column;
}
div#letters {
width: 33%;
margin: 50px auto;
display: flex;
justify-content: space-between;
}
</style>
</head>
<body>
<div class="column">
<div class="inline">
<div class="form">
<label for="lol">Choose a letter and type ENTER : </label>
<input id="lol" placeholder="Choose a letter and type ENTER">
</div>
<div id="count"></div>
</div>
<div id="letters"></div>
</div>
<script type="application/javascript" src="pendu.js"></script>
<script type="application/javascript">
pendu.init();
</script>
</body>
</html>