-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
65 lines (61 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<!-- -->
<link rel="stylesheet" href="css/style1.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
<!-- -->
</head>
<body>
<nav class="navbar blue z-depth-4">
<h2>Xk-budget</h2>
</nav>
<div class="main">
<form id="vacationCalc">
<input type="text" placeholder="Destiny" id="destiny" required />
<input type="number" placeholder="Budget" id="budget" required />
<input
type="number"
placeholder="Acomodation"
id="acomodation"
required
/>
<input type="number" placeholder="Transport " id="transport" required />
<input type="number" placeholder="Food" id="food" required />
<input type="submit" value="Calculate" class="btn blue z-depth-4" />
</form>
</div>
<div class="container">
<div class="icons">
<h5><i class="fas fa-plane"></i></h5>
<h5><i class="fas fa-wallet"></i></h5>
<h5><i class="fas fa-money-bill-wave-alt"></i></h5>
</div>
<div class="data">
<div class="result" id="result"></div>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>