-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession1ex.html
More file actions
44 lines (42 loc) · 1.42 KB
/
session1ex.html
File metadata and controls
44 lines (42 loc) · 1.42 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
<html>
<head>
<title> Example 1 </title>
</head>
<body>
<h2>URL Catalog</h2>
<table>
<thead>
<tr>
<th> SNO. </th>
<th> Website Name </th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> <a href="http://www.google.com" title="this will redirect you to google website"><img src="images/1.png" width="125px" height="100px" ></a> </td>
</tr>
<tr>
<td> 2 </td>
<td> <a href="http://www.facebook.com" title="this will redirect you to facebook website"><img src="images/fb.jpg" width="125px" height="100px" ></a> </td>
</tr>
<tr>
<td> 1 </td>
<td> <a href="http://www.google.com" title="this will redirect you to google website"><img src="images/1.png" width="125px" height="100px" ></a> </td>
</tr>
<tr>
<td> 2 </td>
<td> <a href="http://www.facebook.com" title="this will redirect you to facebook website"><img src="images/fb.jpg" width="125px" height="100px" ></a> </td>
</tr>
<tr>
<td> 1 </td>
<td> <a href="http://www.google.com" title="this will redirect you to google website"><img src="images/1.png" width="125px" height="100px" ></a> </td>
</tr>
<tr>
<td> 2 </td>
<td> <a href="http://www.facebook.com" title="this will redirect you to facebook website"><img src="images/fb.jpg" width="125px" height="100px" ></a> </td>
</tr>
</tbody>
</table>
</body>
</html>