static_html / index.html
Nandhini1357's picture
Updated tourist app
fd6085b verified
raw
history blame
437 Bytes
<!DOCTYPE html>
<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>