-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (63 loc) · 2.55 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
<!DOCTYPE html>
<html lang="pl">
<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>Kalkulator walut</title>
<meta property="og:image" content="images/currencyfb.png">
<link rel="icon" href="images/ico.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
integrity="sha512-oHDEc8Xed4hiW6CxD7qjbnI+B07vDdX7hEPTvn9pSZO1bcRqHp8mj9pyr+8RVC2GmtEfI2Bi9Ke9Ass0as+zpg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="css/style.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/form.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<script defer src="js/script.js">
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital@0;1&display=swap" rel="stylesheet">
</head>
<body class="body">
<header class="header">
<h1 class="header__title">
Przelicz sobie pieniążki
</h1>
</header>
<form class="form js-form">
<p>
<label class="form__label">
<span class="form__labelText">Wprowadź wartość*:</span>
<input class="form__input js-inputValue" name="currencyValue" type="number" min="0.01" step="any"
placeholder="PLN" required>
</label>
</p>
<p>
<label class="form__label">
<span class="form__labelText">Wybierz walutę:</span>
<select class="form__select js-inputCurrency" name="selectCurrency">
<option value="EUR">Euro</option>
<option value="GBP">Funt brytyjski (szterling)</option>
<option value="USD">Dolar amerykański</option>
</select>
</label>
</p>
<p>
<button class="form__button">POLICZ</button>
</p>
<p>
<span class="form__result js-result">Policz coś</span>
</p>
<p class="form__infoText">
* - pole wymagane
</p>
</form>
<footer class="footer">
Kursy walut aktualne na dzień 27.11.2022
</footer>
</body>
</html>