-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 750 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<p style="border-width:10px; border-style:ridge; border-color:powderblue;">Any words</p>
<p style="border:10px ridge powderblue;">Any words 2</p>
<img src="https://cdn.pixabay.com/photo/2023/05/22/13/45/mount-fuji-8010752_960_720.jpg" style="width:30px;">
<p><img src="set.jpg" usemap="#workmap"></p>
<map name="workmap">
<area shape="circle" coords="460,90,80" href="https://www.google.com">
<area shape="rect" coords="70,65,158,168" href="https://www.google.com">
</map>
<img src="cod.jpg" usemap="#workmap2">
<map name="workmap2">
<area shape="poly" coords="334,569,594,383,883,324,1268,415,979,579,709,632" href="https://www.google.com">
</map>
</body>
</html>