-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond_program.html
72 lines (68 loc) · 1.51 KB
/
second_program.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en-us">
<header>
<head>
<title>
info
</title>
</head>
</header>
<body>
<div style="background-color:lightgrey;border:2px solid brown;text-align:center;">
<h1>KIIT</h1>
<H2>Student information</h2>
</div>
<hr>
<form>
<fieldset>
<legend>info</legend>
Name: <input type="text" value="xxx" style="margin-left:20px;">
<br>
<br>
Address: <textarea rows="2" cols"20"></textarea>
<br>
<br>
MIC <input type="radio"> MBT <input type="radio" checked>
<br>
<br>
Semester
<select>
<option>I</option>
<option selected>II</option>
<option>misgana</option>
<option>misgla</option>
<option>agent 47</option>
</select>
<br>
<br>
Male <input type="checkbox">
Female <input type="checkbox" checked>
<br>
<br>
Birthdate:<input type="datetime-local">
<br>
<br>
Admission Date: <input type="date">
<br>
<br>
Email: <input type="email">
<br>
<br>
<input type="button" onclick=" alert('checked!')" value="check the detail">
<button>submit</button>
<br>
<br>
<pre>
check the detail
&
press submit
</pre>
<br>
<br>
<center>
<a href="http://biotech.kiit.ac.in/""><img src="biotech-logo.png" style="width:200px; height:50px; alt="KSBT" </a>
</center>
</fieldset>
</form>
</body>
</html>