You are part of the Web development Team, currently designing a Web site for A company called Nkwali Yenkosi that designs and sells leather clothing and accessories. The Web site is made up of 5 Web pages (Home, About the leather, DIY Methods, Brick & Mortar and Shop Now). You are responsible for creating the Shop Now Web page and 2 Web pages connecting to it
I consider that you are asking how to link up the pages while you are a part of Web development team. There might be other ways also to link web pages but still, I prefer HTML syntax since it is easier to implement and understand. Please find the syntax below:-
<!DOCTYPE html>
<html>
<head>
<title>ANY_TITLE_YOU_GIVE</title>
</head>
<body>
<h1>ANY_NAME_TO_DISPLAY_AS_EMBEDDED_TO_NEXT_PAGE</h1>
<a href="https://LINK_OF_THE_NEXTPAGE">Contact</a>
</body>
</html>
The <a> tag indicates the starting of the link and the </a> tag indicates where it ends. Whatever text gets added inside these tags, will work as a link. Add the URL for the link in the <a href=” ”>. Just keep in mind that you should use the <a>…</a> tags inside <body>…</body> tags.
Comments
Leave a comment