-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqwe.html
59 lines (47 loc) · 1.04 KB
/
qwe.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
<!doctype html>
<html>
<head>
<style>
h1 {
text-align: center;
text-shadow: 3px 2px gray;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<h1>Length Converter</h1>
<hr>
<p>
<img src="img2.jpg" style="width:37%;"></p>
<form >
<fieldset>
<legend>Conversion Details:</legend>
<p>
<nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp><nbsp>
<nbsp><nbsp><nbsp>Enter Length:
<input type="number" name="length" value="0.0">
<select name="Units">
<option value="meter">Meters</option>
<option value="centimeter">Centimeters</option>
<option value="inches">Inches</option>
<option value="kilometers">Kilometers</option>
</select>
Into
<select name="Units">
<option value="meter">Meters</option>
<option value="centimeter">Centimeters</option>
<option value="inches">Inches</option>
<option value="kilometers">Kilometers</option>
</select>
<br>
<input type="submit" value="Calculate">
</p>
</fieldset>
</form>
</body>
</html>