File size: 1,016 Bytes
8544bdd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tour Recommendation System</title>
<style>
body { font-family: Arial, sans-serif; background-color: #f9f9f9; padding: 20px; }
h1 { color: #333; }
form { margin-bottom: 30px; }
input[type="text"] { padding: 10px; width: 300px; }
button { padding: 10px 15px; background-color: #4CAF50; color: white; border: none; }
button:hover { background-color: #45a049; cursor: pointer; }
ul { list-style: none; padding: 0; }
li { background: #fff; padding: 15px; margin-bottom: 10px; border-radius: 5px; box-shadow: 0 0 5px #ccc; }
</style>
</head>
<body>
<h1>Tour Recommendation System</h1>
<form method="POST">
<label for="destination">Enter Destination:</label><br><br>
<input type="text" name="destination" placeholder="Example: Cox's Bazar Sea Beach" required>
<button type="submit">Get Recommendations</button>
</form>
</body>
</html> |