How to link one page to another page using Image in HTML code download
First create this page with firstpage.html name
Now create second page name is second.html
Then last download this image and run your program
Watch video Here
https://youtu.be/F0ZYiSnN0Pg
Download code from here
https://drive.google.com/file/d/1XtaEjAI4nMECpnw2vjndisnULZ2VcRIQ/view?usp=sharing
First create this page with firstpage.html name
<html>
<body>
<h1>First Page</h1>
<p>
<a href="second.html">
<img src="TheCodingBus.png" height="200" width="200">
</a>
</p>
</body>
</html>
Now create second page name is second.html
<html>
<body>
<h1>Second Page</h1>
<p>
This is your Second Page Click Here below and go
to the Firts Page
<a href="firstpage.html">
<img src="TheCodingBus.png" height="200" width="200">
</a>
</p>
</body>
</html>
Then last download this image and run your program
Watch video Here
https://youtu.be/F0ZYiSnN0Pg
Download code from here
https://drive.google.com/file/d/1XtaEjAI4nMECpnw2vjndisnULZ2VcRIQ/view?usp=sharing
No comments:
Post a Comment