How can I code in Javascript without getting a syntax error in Web Development Fundamentals
I'm trying to make the ticketing website in Web Development Fundamentals 34.2 but I keep getting a JavaScript syntax error each time I run my code. Here is my entire code: Html html> <body> <section> <h1>The Eiffel Tower</h1> <a href="https://test.com" target="-blank"> https://sololearnassets.azureedge.net/eiffel-tower.jpg </a> <img src="https://sololearnassets.azureedge.net/eiffel-tower.jpg" alt="Some Image" width="30%" > <p><strong>Eiffel Tower</strong> is a wrought-iron tower that stands <strong>1,063 ft (324 m)</strong> tall in <strong>Paris</strong></p> <p>Currently, the <strong>Eiffel Tower</strong> is the most-visited monument in the world with over <strong>7 million</strong> visitors a year.</p> <p>Visitors can choose to go up using the Tower lift or the stairs. There are <strong>1,665 steps</strong> to the top.</p> <p><b>Transport:</b> <ul> <li>Bus:lines 42,6,72,82 and 87.</li> <li>Metro:Trocadero,Ecole militaire.</li> <li>Train:Champ de Mars-Tour Eiffel,line C.</li> </ul> <table border="1"> <p><b>Prices:<p> <tr> <th>Category</th> <th>Price</th> </tr> <tr> <td>Adults</td> <td>$12</td> </tr> <tr> <td>Children</td> <td>$5</td> </table> </section> <section id="buy" <form> <div class="form-section"> <label for="Adults">Adults:</label><br> <input type="number" id="Adults"> </div> <div class="form-section"> <label for="Children">Children:<label><br> <input type="number" id="Adults"> </div> <div class="form-section"> <input type="button" value="Buy"> </div> </form> </section> <footer> <p>©Copyright</p> </footer> </body>