-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.3 KB
/
index.html
File metadata and controls
40 lines (33 loc) · 1.3 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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Ensure responsiveness -->
<title>Combustion Air & Product Calculator</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div id="m">
<h2>ይህ የ ሰለሽ ዌብሳይት ነው</h2>
<h2>Combustion Calculator</h2>
</div>
<label>Carbon atoms (n): <input type="number" id="carbon" placeholder="Number of Carbon atoms" min="1"></label>
<label>Hydrogen atoms (m): <input type="number" id="hydrogen" placeholder="Number of Hydrogen atoms" min="0"></label>
<label>Mixture Type:
<select id="mixtureType" onchange="toggleInputs()">
<option value="stoichiometric">Stoichiometric</option>
<option value="lean">Lean</option>
<option value="rich">Rich</option>
</select>
</label>
<div id="excessOxygenContainer">
<label>Excess Oxygen (moles): <input type="number" id="excessOxygen" placeholder="Excess O₂ moles" min="0" step="0.1"></label>
</div>
<div id="coContainer">
<label>CO Produced (moles): <input type="number" id="coMoles" placeholder="CO moles" min="0" step="0.1"></label>
</div>
<button onclick="calculate()">Calculate</button>
<div class="output" id="results"></div>
</body>
</html>