-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pogađanje broja</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="form">
<h1>Pogodite slučajni broj!</h1>
<p>Generiran je slučajni broj u rasponu od 1 - 10. <br/>Pokušajte ga pogoditi...</p>
<label for="poljeUnos">Upišite broj: </label>
<input type="text" id="poljeUnos" class="poljeUnos" onfocus="this.value=''">
<input type="submit" value="Pogađaj!" class="uneseniBroj" id="uneseniBroj">
<p id="poruka"> </p>
<!-- HR - gumb reloada stranicu kako bi se generirao novi broj, skriven osim ako je odgovor točan -->
<!-- EN - button will reload page in order to generate new number, hidden unless answer is correct -->
<button id="reload" style="display:none" onclick=document.location.reload()>Novi broj</button>
</div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>