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