-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<form name="form">
<h3>Even Numbers</h3>
<input type="text" id="limitbox" placeholder="Input Limit" />
<input type="button" value="Even numbers" onclick="my_func()" />
<br />
<input type="button" value="i" onclick="msg()" style="float:right" />
<br />
<br />
<hr />
<h3>Sum</h3>
<input type="text" id="num1" placeholder="Num 1" />+
<input type="text" id="num2" placeholder="Num 2" />
<br />
<input type="button" value="Sum" onclick="sum()" />
<hr />
<h3>Dom Access</h3>
<input type="text" id="name" placeholder="Input Name" />
<input type="button" value="Ok" onclick="msg()" /><br />
<hr />
</form>
<form>
<h3>Forms[] array </h3>
<input type="radio" name="rad1" value="Male" />Male
<input type="radio" name="rad1" value="Female" />Female
<br />
<input type="button" value="Check" onclick="check()" style=/>
<hr />
</form>
</body>
</html>