Neha wants to display a 'Click Here' message on her
webpage which, when clicked, opens a new webpage
'Chapter2.html'. Write the syntax of the HTML command
she should use.
Answers
Answered by
1
Answer:
<html>
<head>
</head>
<body>
<h1>GeeksforGeeks</h1>
<!-- Adding button inside the link tag -->
<!--write the web page you want to link inside the quotes in front of a tag-->
<a href='link_of_the_other_web_page'>
<button>
Click Here
</button>
</a>
</body>
</html>
Similar questions