8 ONLINE BOOK STORE
Main.html <html> <head><h1><center ><font color="black">ODDESSY BOOK STORES</h1></center></font> <script> function redirect() { var selectedIndex= document.getElementById("Opt").selectedIndex; var selectedText= document.getElementById("Opt").options[selectedIndex ].text; if(selectedText=="horror") {location.href="horror.html"; } else{ location.href="sciencefiction.html"; }} </script> </head> <body background="C:\Users\Admin\Downloads\photo-1602722053020-af31042989d5.jpeg"> <font color="white"> <center> CHOOSE THE GENRE<select id="Opt"> <option>horror</option> <option>sciencefiction</option> </select> <input type="SUBMIT" value="GO" onClick="redirect()"> </font> </center> </body>...