-
Notifications
You must be signed in to change notification settings - Fork 1
/
energy.html
71 lines (67 loc) · 2.84 KB
/
energy.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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Energy</title>
<link rel="stylesheet" href="style_energy.css">
<link rel="icon" href="icon.png">
</head>
<body>
<nav>
<div class="logo">
<img src="chem logo.png" alt="logo" width="70px">
</div>
<ul type="none">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="energy.html" style="text-decoration: underline;">Product</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<div class="energy er">
<div class="htebar bar"> Hydrogen Transition Energy</div>
<div class="box">
<p class="bar bbar">Computes the Change in energy of an electron </p>
<form action="#">
<label for="final">
<p>final state</p>
<input type="number" id="final" min="1">
</label>
<label for="final">
<p>initial state</p>
<input type="number" id="initial" min="1" >
</label>
<div class="result_board">
<button type="submit" id="submit"> Submit </button>
<div class="result_drop">
<div class="ans" id="energy_result"> </div>
<select name="energy_units" id="energy_units" class="units" >
<option value="J">e-18 Joules</option>
<option value="eV">eV</option>
</select>
</div>
</div>
<div class="result_board" style="flex-direction: row-reverse;">
<div class="result_drop" >
<div class="ans" id = "wavelength_result" > </div>
<select name="wavelength_units" id="wavelength_units" class="units">
<option value="nm" >nano metre</option>
<option value="m" selected >e-7 metre</option>
</select>
</div>
</div>
</form>
</div>
<div class="error"> </div>
</div>
<div class="range er">
<div class="wavebar bar">Wave Properties</div>
<img src="wave_properties1.jpg" class="wave_properties_img" style=" margin-top: 30px;">
<img src="wave_properties2.jpg" class="wave_properties_img" >
<div class="region_color" id="region" ></div>
<!--edited-->
</div>
<script src="app_energy.js"></script>
</body>
</html>