forked from sarthikbabuta/HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
26 lines (25 loc) · 702 Bytes
/
table.html
File metadata and controls
26 lines (25 loc) · 702 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
<html>
<head>
<title> welocome to the page </title>
</head>
<body bgcolor="green">
<table border=5x width=50% cellspacing=100px cellpadding=50px>
<caption> STUDENT INFORMATION </caption>
<tr>
<th bgcolor="red"> Name </th>
<th bgcolor="yellow"> Unique Id </th>
<th bgcolor="red"> Course </th>
</tr>
<tr>
<td bgcolor="yellow"> Sarthik </td>
<td bgcolor="red"> 1510991586 </td>
<td bgcolor="yellow"> <a href="https://www.google.co.in/#q=sarthik+babuta"> Click Here </a> </td>
</tr>
<tr>
<td bgcolor="red"> Sarthik </td>
<td bgcolor="yellow"> 1510991586 </td>
<td bgcolor="red"> <a href="https://www.google.co.in/#q=sarthik+babuta"> <img src="pp.jpg" width=40%> </td>
</tr>
</table>
</body>
</html>