how to create webpage to link different webpage of same site
Answers
Answered by
0
with the help of HTML ,you can create a webpage .
siddhishinde:
How will accurate program to do that?
<head>
<title>Links for our another pages.</title>
</head>
<body>
<h2>Click on the links below to browse our pages...</h2><hr/>
<a href="path_of_the_webpage" alt="description_about_the_link"></a>
<!--For example-->
<a href="contact.html" alt="description_about_the_link">Contact us</a>
</body>
</html>
Answered by
4
WITH THE HELP OF THE HTML WE create webpage to link different webpage of same site
<head>
<title>Links to our another webpages.</title>
</head>
<body>
<h2>Click on the links below to browse our pages...</h2><hr/>
<a href="path_of_the_webpage" alt="description_about_the_link">Link Text</a>
<!--for example-->
<a href="contact.html" alt="description_about_the_link">Contact us</a>
</body>
</html>
Similar questions