-
Notifications
You must be signed in to change notification settings - Fork 0
/
Image.html
36 lines (26 loc) · 996 Bytes
/
Image.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Images</title>
</head>
<body>
<!-- <img src="friendjpeg" width="400px" alt="No Image">
<img src="friend.jpeg" usemap="#image-map">
<img src="friend.jpeg" usemap="#image-map">
<map name="image-map">
<area onclick="one()" target =""alt="" title="" href="" coords="944,308,389" shape="circle">
<area onclick="two()" target="" alt="" title="" href="" coords="235,275,527,399" shape="rect">
</map>
<script>
function one(){
alert("You Clicked One")
}
function two(){
alert("You Clicked two")
}
</script> -->
<img src="https://images.unsplash.com/photo-1699247334203-da0063ab6db3?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" width ="700px" alt="NOImage">
</body>
</html>