<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><%= tour.name %> - Tour Details</title> <link rel="stylesheet" href="/css/style.css"> </head> <body> <header> <h1>Tour Details: <%= tour.name %></h1> </header> <section> <h2>Description</h2> <p><%= tour.description %></p> <p>Price: <%= tour.price %> THB</p> </section> <footer> <p>© 2025 Tour Website</p> </footer> </body> </html>