-
Notifications
You must be signed in to change notification settings - Fork 518
/
Copy pathindex.html
69 lines (68 loc) · 2.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello ZeroOne</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="heading">
<h1>Helloww ZeroOne!</h1>
</div>
<div class="post-heading">
<table>
<tr>
<th>Student ID Number</th>
<th>Student Name as per ERP Records</th>
<th>Branch</th>
<th>Greet ZeroOne</th>
</tr>
<tr>
<td>2300031794</td>
<td>Galla Naga Yashwanth</td>
<td>CSE</td>
<td>Hello ZeroOne!</td>
</tr>
<tr>
<td>2100031817</td>
<td>Deepak Reddy Gathpa</td>
<td>CSE Hons</td>
<td>Namasthe!</td>
</tr>
<tr>
<td>2300040157</td>
<td>P Haarika</td>
<td>ECE </td>
<td>Hello ZeroOne!</td>
</tr>
<tr>
<td> 2300033919</td>
<td> A jahnavi </td>
<td> CSE </td>
<td> Hello ZeroOne! </td>
</tr>
<tr>
<td>2300030576</td>
<td>Ramya Sree</td>
<td>CSE </td>
<td>Hello ZeroOne!</td>
</tr>
<tr>
<td>2300031345</td>
<td>G.Lohith Reddy</td>
<td>CSE</td>
<td>Hello ZeroOne!</td>
</tr>
<tr>
<td>2300090249</td>
<td>P.Tejasri Reddy</td>
<td>CSIT</td>
<td>Hello ZeroOne</td>
</tr>
</table>
</div>
</div>
</body>
</html>