-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday41.html
More file actions
42 lines (26 loc) · 767 Bytes
/
day41.html
File metadata and controls
42 lines (26 loc) · 767 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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>myform</title>
</head>
<body>
<form>
<div>
<label for="firstname">
<strong>First Name</strong>
<input type="test" id="firstname" onkeyup=" EnableDisable(this)" />
</label>
</div>
<div>
<label for="secondname">
<strong>Second Name</strong>
<input type="text" id="secondname" onkeyup=" EnableDisable(this)" />
</label>
</div>
<input type="submit" id="btn" disabled />
</form>
<script src="day41.js"></script>
</body>
</html>