-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (32 loc) · 1.26 KB
/
index.html
File metadata and controls
executable file
·34 lines (32 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>All tools in one place</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="../Shared/main.css" />
<script src="../Shared/jquery-3.3.1.min.js"></script>
<script src="unitConverter.js"></script>
<script src="mortgageCalculator.js"></script>
<script src="currencyConverter.js"></script>
<script src="ui.js"></script>
<script src="main.js"></script>
</head>
<body>
<header>
<h2>Conversion tools for Everyday life</h2>
</header>
<nav>
<button class="menuButton buttonActive" id="mainPageButton">Main Page</button>
<button class="menuButton" id="unitConvertButton">Unit Converter</button>
<button class="menuButton" id="mortgageButton">Mortgage calculator</button>
<button class="menuButton" id="currencyButton">Currency converter</button>
</nav>
<section>
<div id="output"></div>
</section>
<footer>
©Kirill Golubev 2018
</footer>
</body>
</html>