-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (69 loc) · 3.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAF Questions Generator</title>
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Muli:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<img src="img/3.jpg" alt="">
<img src="img/4.jpg" alt="">
<img src="img/5.jpg" alt="">
<img src="img/6.jpg" alt="">
<img src="img/7.jpg" alt="">
<img src="img/8.jpg" alt="">
<img src="img/1.jpg" alt="">
<img src="img/2.jpg" alt="">
</div>
<div class="filters">
<div class="filters__race">
<div class="filters__string">Fraction</div>
<label><input type="checkbox" id="AEON" checked> Aeon</label>
<label> <input type="checkbox" id="CYBRAN" checked> Cybran</label>
<label> <input type="checkbox" id="UEF" checked> UEF</label>
<label> <input type="checkbox" id="SERAPHIM" checked> Seraphim</label>
</div>
<div class="filters__tech">
<div class="filters__string">Tech Level</div>
<label> <input type="checkbox" id="COMMAND" checked> ACU</label>
<label> <input type="checkbox" id="TECH1" checked> Tech1</label>
<label> <input type="checkbox" id="TECH2" checked> Tech2</label>
<label> <input type="checkbox" id="TECH3" checked> Tech3</label>
<label> <input type="checkbox" id="EXPERIMENTAL" checked> Experimental</label>
</div>
<div class="filters__type">
<div class="filters__string">Type</div>
<div class="filters__building">
<label> <input type="checkbox" id="UNITS" checked> Units</label>
<label> <input type="checkbox" id="BUILDINGS" checked> Buildings</label>
</div>
<div class="filters__icontype">
<label> <input type="checkbox" id="land" checked> Land</label>
<label> <input type="checkbox" id="amph" checked> Amph</label>
<label> <input type="checkbox" id="air" checked> Air</label>
<label> <input type="checkbox" id="sea" checked> Naval</label>
</div>
</div>
<div class="filters__questions">
<div class="filters__string">Questions</div>
<label><input type="checkbox" id="DEFENCE" checked> Health</label>
<label><input type="checkbox" id="PHYSICS" checked> Speed</label>
<label><input type="checkbox" id="WEAPON" checked> Weapon</label>
<label><input type="checkbox" id="ECONOMY" checked> Economy</label>
<label><input type="checkbox" id="SENSOR" checked> Sensor</label>
</div>
</div>
<div class="dialog">
<div class="dialog__question" id="question"></div>
<div class="dialog__guess" id="input-wrapper"><input id="input" type="text" placeholder="My answer..."
autocomplete="off"></div>
<div class="dialog__answer" id="answrapper">The right Anwer: <span class="" id="answer"></span></div>
<div class="dialog__madeby">by <span>ETFreeman</span></div>
</div>
<script src="js/script.js"></script>
</body>