forked from DeepakReddyG/Hello_ZeroOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.1 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
<!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>2100031817</td>
<td>Deepak Reddy Gathpa</td>
<td>CSE Hons</td>
<td>Namasthe!</td>
</tr>
<tr>
<td>2300033572</td>
<td>Raunit Raj</td>
<td>CSE</td>
<td>Hello ZeroOne!</td>
</tr>
</table>
</div>
</div>
</body>
</html>