-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent.html
More file actions
76 lines (76 loc) · 1.78 KB
/
student.html
File metadata and controls
76 lines (76 loc) · 1.78 KB
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
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student tables</title>
</head>
<body>
<!--
id
name
email
mobile
course
education
-->
<center>
<h1>Student Data</h1>
</center>
<table border="1" width="60%" align="center" cellpadding="10px" cellspacing="2px" height="400px">
<thead bgcolor="gold">
<tr>
<th>id</th>
<th>Name</th>
<th>Email</th>
<th>Mobile</th>
<th>Course</th>
<th>Education</th>
</tr>
</thead>
<tbody bgcolor="gray">
<tr>
<td>1</td>
<td>Prashant</td>
<td>prashantkumarsen0@gmail.com</td>
<td>+91-7870188530</td>
<td>javafullstap</td>
<td>BCA</td>
</tr>
<tr>
<td>2</td>
<td>Sumit</td>
<td>sumitkumar0@gmail.com</td>
<td>+91-1800253610</td>
<td>javafullstap</td>
<td>MCA</td>
</tr>
<tr>
<td>3</td>
<td>Ankit</td>
<td>ankitkumar01@gmail.com</td>
<td>+91-0987654321</td>
<td>javafullstap</td>
<td>BCA</td>
</tr>
<tr>
<td>4</td>
<td>Rahul</td>
<td>rahulkumar000@gmail.com</td>
<td>+91-0123456789</td>
<td>javafullstap</td>
<td>B.COM</td>
</tr>
<tr>
<td>5</td>
<td>Mohit</td>
<td>mohitkumar005@gmail.com</td>
<td>+91-0123456789</td>
<td>javafullstap</td>
<td>B.COM</td>
</tr>
</tbody>
</table>
</body>
</html>