-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (23 loc) · 847 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (23 loc) · 847 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"
<title="Calc1"/>
<meta name="description" content="BRQ1"/>
<script type="text/javascript" src = "skrypt1.js" async></script>
</head>
<body>
<center><H1> CALCULATOR v. 0.2 </H1><BR>
Enter first number:<input id="num1" type="number" > </input><br><br>
Enter second number:<input id="num2" type="number" > </input><br><br>
<legend>... and choose action</legend>
<input type="radio" name="radio" > + <br>
<input type="radio" name="radio" > - <br>
<input type="radio" name="radio" > x <br>
<input type="radio" name="radio" > : <br> <br>
<input type="submit" onclick="count()" value=" GO ! "> </input> <br>
<h3><label>Abracadabra! your result is <output type="number" name="total" ></label></h3>
<H2><div id="result"></div></H2>
</center>
</body>
</html>