-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
40 lines (38 loc) · 1.32 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Linter + webpack</title>
</head>
<body>
<header class="header">
</header>
<main class="main">
<div class="converter">
<div class="converter__box">
<label class="converter__label">
<span class="converter__span">Exchange</span>
<input class="converter__input j-currency-entered" type="number" name="entered" value="">
</label>
<select class="converter__select j-currency-from" name="currency">
<option value="usd">USD</option>
<option value="rub">RUB</option>
<option value="eur">EUR</option>
</select>
</div>
<div class="converter__box">
<label class="converter__label">
<span class="converter__span">Into</span>
<input class="converter__input j-currency-calculated" type="number" name="calculated" value="">
<select class="converter__select j-currency-to" name="currency">
<option value="eur">EUR</option>
<option value="usd">USD</option>
<option value="rub">RUB</option>
</select>
</label>
</div>
</div>
</main>
<script type="text/javascript" src="./dist/main.bundle.js"></script>
</body>
</html>