-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
57 lines (56 loc) · 1.85 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
<html>
<head>
<title>IP Converter</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
</head>
<body>
<div class="row">
<div class="col-sm-12">
<h1>IP Converter</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<form action="#" class="form-horizontal">
<div class="form-group">
<label for="ip_dotted" class="col-sm-2 control-label">IP dotted</label>
<div class="col-sm-10">
<input type="text" id="ip_dotted" value="127.0.0.1">
</div>
</div>
<div class="form-group">
<label for="ip_oct" class="col-sm-2 control-label">IP octal</label>
<div class="col-sm-10">
<input type="text" id="ip_oct" value="177.0.0.1">
</div>
</div>
<div class="form-group">
<label for="ip_hex" class="col-sm-2 control-label">IP hexadecimal</label>
<div class="col-sm-10">
<input type="text" id="ip_hex" value="0x7f000001">
</div>
</div>
<div class="form-group">
<label for="ip_int" class="col-sm-2 control-label">IP integer</label>
<div class="col-sm-10">
<input type="text" id="ip_int" value="2130706433">
</div>
</div>
</form>
<div class="row">
<div class="col-sm-12">
<p>
Hint: The recalculation is made when a 'onchange'-event fires.
</p>
</div>
</div>
</div>
</div>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>