Gitlab@Informatics

Skip to content
Snippets Groups Projects
Commit cad9d4cf authored by 65160394's avatar 65160394
Browse files

Project Round 1

parent 7afe62ae
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html> <!DOCTYPE html>
<html lang="th"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ทัวร์ท่องเที่ยว</title> <title>Tour Website</title>
<link rel="stylesheet" href="/css/style.css">
</head> </head>
<body> <body>
<h1>แพ็กเกจทัวร์</h1> <header>
<h1>Welcome to Our Tour Website</h1>
</header>
<section>
<h2>Available Tours</h2>
<ul> <ul>
<% tours.forEach(tour => { %> <% tours.forEach(tour => { %>
<li> <li>
<a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> บาท <a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> THB
</li> </li>
<% }) %> <% }) %>
</ul> </ul>
</section>
<footer>
<p>&copy; 2025 Tour Website</p>
</footer>
</body> </body>
</html> </html>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="th"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= tour.name %></title> <title><%= tour.name %> - Tour Details</title>
<link rel="stylesheet" href="/css/style.css">
</head> </head>
<body> <body>
<h1><%= tour.name %></h1> <header>
<p>รายละเอียด: <%= tour.description %></p> <h1>Tour Details: <%= tour.name %></h1>
<p>ราคา: <%= tour.price %> บาท</p> </header>
<a href="/">กลับไปหน้าหลัก</a>
<section>
<h2>Description</h2>
<p><%= tour.description %></p>
<p>Price: <%= tour.price %> THB</p>
</section>
<footer>
<p>&copy; 2025 Tour Website</p>
</footer>
</body> </body>
</html> </html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment