-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 1.61 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
<!DOCTYPE html>
<html lang="pl-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">
<link rel="stylesheet" href="./style.css/reset.css">
<link rel="stylesheet" href="/style.css/style.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<title>Przelicznik walut</title>
</head>
<body>
<div id="page-preloader" class="preloader">
<div class ="loader"></div>
</div>
<main>
<section class="container">
<div class="logo-cantainer">
<img src="./images/8090bb46-143b-4bc7-8c5a-2e435517371c_200x200.png" alt="logo of app">
<div class="currency-converter">
<h1>Przelicznik walut</h1>
</div>
</div>
<div class="operations">
<div id="selections">
<input id ="num" type="number" onclick="this.value=''">
<select id="select-option">
<option value="EUR">EUR</option>
<option value="USD">USD</option>
<option value="CHF">CHF</option>
</select>
</div>
<div id="converter">
<button id="equal" >Przelicz</button>
<div>
<p id="total"> </p>
</div>
</div>
</div>
<hr />
</section>
</main>
<script src="./script/index.js" async></script>
</body>
</html>