-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.html
37 lines (37 loc) · 1.28 KB
/
link.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="Web Programming">
<title>Web Programming</title>
<script type="text/javascript">
function sayhello() {
alert("Hello Human!")
}
</script>
</head>
<body style="background-color: aqua ;">
<input type="button" onclick="sayhello()" style="background-color: green; color: yellow; width: 300px; height: 30px; margin-left: 38% " value="Say Hello" />
<br>
<br>
<TABLE style="border-style: dashed; border-color: green" height="300px" width="650px" border="3" cellpadding="10px" align="center">
<th><h2>Natural Jungle</h2></th>
<th><h2>Concrete Jungle</h2></th>
<tr>
<td align="center">
<a href="https://www.youtube.com/watch?v=IrPL6L9P8lE" target="_blank">
<img src="https://wallpapercave.com/wp/wp2465273.jpg" width="250px" height="200px" alt="Nature" />
</a>
</td>
<td align="center">
<a href="https://www.youtube.com/watch?v=7cycAyeEGUo" target="_blank">
<img src="https://worldstrides.com/wp-content/uploads/2015/07/iStock_000040849990_Large.jpg" width="250px" height="200px" alt="Nature" />
</a>
</td>
</tr>
</TABLE>
<p align="center"><a href="javascript:window.close();" ><img src="https://www.freeiconspng.com/uploads/close-icon-31.png" /></a>
</p>
<h3 align="right">swordx</h3>
</body>
</html>