-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask3.html
More file actions
36 lines (30 loc) · 1.01 KB
/
task3.html
File metadata and controls
36 lines (30 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table{
margin-top: 50px;
}
</style>
</head>
<body>
<center>
<table border="1" style="border-collapse: collapse;">
<tr>
<td>
<p>Click any of the following links</p>
<a href="http://www.google.com" target="_blank">opens in NEW</a> |
<a href="http://www.google.com">opens in SAME</a> |
<a href="http://www.google.com" target="_parent">opens in PARENT</a> |
<a href="http://www.google.com" target="_self">opens in BODY</a> |
<a href="http://www.google.com" target="_top">opens in TOP</a> |
<a href="mailto:satyamanisrujan@gmail.com">Send an email</a>
</td>
</tr>
</table>
</center>
</body>
</html>