Html code to create links on words and link them to wikipedia pages in html
Answers
Answered by
2
<html>
<head>
<title> Links On Words </title>
</head>
<body>
<a href = URL1> WORD1 </a>
<br>
<a href = URL2> WORD2 </a>
<br>
<!--- And so on.. ---!>
</body>
</html>
<head>
<title> Links On Words </title>
</head>
<body>
<a href = URL1> WORD1 </a>
<br>
<a href = URL2> WORD2 </a>
<br>
<!--- And so on.. ---!>
</body>
</html>
Answered by
1
<a href="file.html">
hypertext</a> use for hyper link
<a href="URL"> hypertext</a> internet hyperlink
<img src="image.gif" usemap="#map_name"> <map name="map_name"> <area shape="rect" coords="x1,y1,x2,y2" hrEF=URL> <area shape="rect" coords="x1,y1,x2,y2" hrEF=URL> </map>
<a href="URL"> hypertext</a> internet hyperlink
<img src="image.gif" usemap="#map_name"> <map name="map_name"> <area shape="rect" coords="x1,y1,x2,y2" hrEF=URL> <area shape="rect" coords="x1,y1,x2,y2" hrEF=URL> </map>
Similar questions