Posts

Showing posts from July, 2021

HTML Side menu

 <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Product sheet </title>  <script src="http://code.jquery.com/jquery-1.9.1.js"></script> </head> <body> <div class="header">      <h1>Product sheet </h1> </div> <div class="nav">     <ul>         <li><a href="#section-london">Product</a></li>         <li><a href="#section-paris">click 2 </a></li>          <li><a href="#section-london1">Click 3</a></li>         <li><a href="#section-paris1">click 4 </a></li>     </ul> </div> <div id="section-london" class="tab-content"> <h2>Product Details</h2> <p>This will show you the product details.</p> </div> <div id="section-paris&