Computer Science, asked by siddhishinde, 1 year ago

how to create webpage to link different webpage of same site

Answers

Answered by priya438
0
with the help of HTML ,you can create a webpage .

siddhishinde: How will accurate program to do that?
MyselfAbhi: <html>
<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>
MyselfAbhi: The accurate answer of the question is above.
Answered by Anonymous
4
WITH THE HELP OF THE HTML WE create webpage to link different webpage of same site

siddhishinde: Yes but using all tags I want program properly
MyselfAbhi: BRAINLY2222 - she asked how to create a webpage not how is a webpage created!
MyselfAbhi: And Sidhhi here is how you can create it-
MyselfAbhi: <html>
<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>
MyselfAbhi: Hope it's clear to you, if not feel free to ask for details. :)
siddhishinde: Thanks It's sufficient
Similar questions