-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 994 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 994 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Baloo|Raleway&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Zgadnij jaka to liczba</title>
</head>
<body>
<main class="container">
<div class="box">
<h1 class="title">Zgadnij liczbę</h1>
<p class="subtitle">Zgadnij liczbę pomiędzy <span class="min-num"></span>
oraz <span class="max-num"></span></p>
<div class="input-wrapper">
<label class="guess-label">Wpisz swoją liczbę</label>
<input class="guess-input" type="number">
<button class="guess-btn" type="submit">Zatwierdź</button>
</div>
<p class="message"></p>
</div>
</main>
<script src="js/vars.js"></script>
<script src="js/app.js"></script>
</body>
</html>