-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 869 Bytes
/
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
<html>
<head>
<!--Load Jqueary and Moment-->
<script type="text/javascript" src="jqueary.js"></script>
<script type="text/javascript" src="moment.js"></script>
<link type="text/css" href="main.css" rel="stylesheet">
<script type="text/javascript">
function compute(){
var input, result;
input = $("#textInput").val();
$("#textInput").val("");
result = (input*10);
$("#ans").text(result);
};
</script>
</head>
<body>
<div class="center">
<p class="center inline">How many mm in </p><input type="text" class="textbox" id="textInput"><p class="inline"> cm</p>
<button type="button" class="button center block" onclick="compute()" value="Update">
<p class="small">Update</p>
</button>
<p class="large center" id="ans"></p>
</div>
</body>
</html>