-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 914 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 914 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<title>JavaScript game</title>
</head>
<body>
<div class="pozadi">
<h1 class="jmeno">Kouskova první hra v JavaScriptu - hádání čísel</h1>
<h2><i>Máš 10 pokusů na uhodnutí vygenerovaného čísla v rozsahu 1 až 100</i></h2>
</div>
<hr color="red">
<div class="form">
<div class="tip">
<b><h2><label for="guessField">Zadej tvůj tip: (číslo)</label></h2></b>
</div>
<input type="number" min="1" max="100" required id="guessField" class="guessField">
<input type="submit" value="Zkusit" class="guessSubmit">
</div>
<div class="resultParas">
<p class="guesses"></p>
<p class="lastResult"></p>
<p class="lowOrHi"></p>
</div>
<script src="script.js"></script>
</body>
</html>