-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML_Task3.html
35 lines (35 loc) · 928 Bytes
/
HTML_Task3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Task 3</title>
</head>
<body>
<table
bgcolor="#f0f0f0"
border="1"
cellspacing="0"
cellpadding="5"
width="90%"
>
<tr>
<td>
Click any of the following links <br />
<br />
<table border="0">
<a target="_blank" href="./index.html"> Opens in New </a>
|
<a target="_self" href="./index.html"> Opens in Self</a>
|
<a target="_parent" href="./index.html">Opens in Parent</a>
|
<a target="_top" href="./index.html">Opens in Body</a>
|
<a href="sendto:">Send email</a>
</table>
</td>
</tr>
</table>
</body>
</html>