简体   繁体   中英

I want to create a link on the home page of my website that will take users to the next page say about us then another page contact

I have 3 html file(home about contact) On the home file I want to make a link that will enable user to go to other pages any help will be appreciated I've been searching I have no one to ask I need to get this project done I've already made the links but how do I make them open the pages thank you

In HTML - you can write a link Tag, by using a link tag you can manage pages ( home, contact, about ), there is a simple code example for you -

   !DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- link  -->
    <a href="your home file path ">Home</a>
    <a href="your conatct file path ">contact</a>
    <a href="your about file path">About</a>
</body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM