-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 1.23 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ration Cost Calculator</title>
<link rel="stylesheet" href="styles.css"><link rel="icon" type="image/png" sizes="16x16" href="https://cdn.discordapp.com/attachments/515323660962234381/811636644213424159/jWmKJcIAeq5AAAAABJRU5ErkJggg.png">
</head>
<body>
<header id="header">
<h1>Cost of Feed Calculator based on Ration and kgs of Premix used.</h1>
</header>
<div class="totalPremixQuantity">
<div>Total Premix used: </div>
<span><input id="totalPremixQuantity"></input><select id="input-options"><option>/day</option><option>/week</option><option>/month</option><option>/year</option></select></span>
</div>
<div class="flex-container">
<form id="userAddedElems"> </form>
<div class="result">
<p>Total cost of feed used: </p>
<span><span id="answer"></span> <select id="answer-option"><option>/day</option><option>/week</option><option>/month</option><option>/year</option></select></span>
</div>
</div>
</div>
<div><button class="wide hover" id="addIngredient">Add Ingredient</button></div></div>
</body>
<script src="script.js"></script>
</html>