CSS का उपयोग करके एक छवि पर एक नेविगेशन मेनू जोड़ने के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> body{ margin:0px; margin-top:10px; padding: 0px; } nav{ width: 50%; background-color: rgb(23, 104, 43); overflow: auto; height: auto; } .links { display: inline-block; text-align: center; padding: 14px; color: rgb(255, 255, 255); text-decoration: none; font-size: 17px; } .links:hover { background-color: rgb(129, 123, 123); } .selected{ background-color: rgb(0, 56, 42); } .image-nav{ background:url('https://i.picsum.photos/id/652/1366/1366.jpg'); min-height: 400px; padding: 20px; background-position: center; background-repeat: no-repeat; background-size: cover; width: 70%; } </style> </head> <body> <div class="image-nav"> <nav> <a class="links selected" href="#">Home</a> <a class="links" href="#">Login</a> <a class="links" href="#"> Register</a> <a class="links" href="#">Contact Us</a> <a class="links" href="#">More Info</a> </nav> </div> </body> </html>
आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -