Gitlab@Informatics

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

Project Round 1

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