Spaces:
Running
Running
| <html> | |
| <head> | |
| <title>Tourist App</title> | |
| </head> | |
| <body> | |
| <h1>Tourist Guide App</h1> | |
| <input type="text" id="city" placeholder="Enter city"> | |
| <button onclick="showPlaces()">Search</button> | |
| <p id="result"></p> | |
| <script> | |
| function showPlaces() { | |
| let city = document.getElementById("city").value; | |
| document.getElementById("result").innerHTML = | |
| "Top tourist places in " + city; | |
| } | |
| </script> | |
| </body> | |
| </html> |