PROJECT2
PROJECT2
DFT 40163
WEB DESIGN TECHNOLOGY
ASSESMENT PROJECT 2
NAME 1. DANIAL IZZUDDIN BIN MOHAMAD SHAHIR
2. NUR FARAH AQILAH BINTI NORAZAM
3. NUR ARIESYA SYAFIKA BINTI ABDULLAH
REG NO 1. 13DDT22F1124
2. 13DDT22F1139
3. 13DDT22F1176
PROGRAMME DDT4S2
INSTRUCTIONS :
MARKING SCHEME
CLO1P PLO 3 P4 / 30
TOTAL / 30
THE ENTIRE QUESTION IS BASED ON JTMK’S QUESTION BANK APPROVED BY PROGRAMME LEADER.
NO SIGNATURE IS REQUIRED.
PROJECT
CHAPTER 4: JAVASCRIPT
CHAPTER 5: WEB MOBILE FRAMEWORK
[CLO1P, P4]
PURPOSE:
Student will be given an exposure to work in a team in developing a mobile web application using the
knowledge and skills that they have been learned.
QUESTION:
1. INTRODUCTION
As Malaysia based travel agency, Setia Travel Agency offer cheap tour packages either domestic
(within Malaysia) or international tours. Just tell them about the trip you’re dreaming of taking—they
will make it a reality. Setia Travel Agency team consist of a group of travel expert which are strong
emphasis on service quality, customer care, attentive listening and prompt response to enquiries
within 24 hours.
You as a web developer has been appointed to develop the website based on the instructions and
requirements of the specification provided below.
In a group of 3-4 person, you are required to develop a Mobile web application based on given
introduction by using appropriate tools. Each group will also have to present the mobile web
application that has been develop.
-END-
HTML CODE :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Setia Travel Agency</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link rel="stylesheet" href="themes/project2.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
</div>
<div data-role="footer" data-position="fixed">
<h4>© Setia Travel Agency</h4>
</div>
</div>
<div data-role="header">
<h1>DOMESTIC</h1>
</div>
<div data-role="navbar">
<!-- navigation -->
<ul>
<li><a href="#page3" data-icon="home">INTERNATIONAL </a></li>
<li><a href="#page4" data-icon="home">DOMESTIC</a></li>
</ul>
</div>
<div data-role="main" class="ui-content">
<div class="ui-grid-b">
<p>DOMESTIC TOURS</p>
<div class="ui-block-a">
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="langkawi.jpg" alt="Setia Travel Agency">LANGKAWI
</div>
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="tioman.jpg" alt="Setia Travel Agency">TIOMAN ISLAND
</div>
</div>
<div class="ui-block-b">
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="kuching.jpg" alt="Setia Travel Agency">KUCHING
</div>
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="ipoh.jpg" alt="Setia Travel Agency">IPOH
</div>
</div>
<div class="ui-block-c">
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="ch.jpg" alt="Setia Travel Agency">CAMERON HIGHLAND
</div>
<div class="ui-bar ui-bar-a" style="height: 40%">
<img src="kapas.jpg" alt="Setia Travel Agency">KAPAS ISLAND
</div>
</div>
<p><a href="#page5" class="ui-btn ui-corner-all">BOOKING !!</a></p>
</div>
</div>
<div data-role="footer" data-position="fixed">
<h4>© Setia Travel Agency</h4>
</div>
</div>
</body>
</html>
CSS CODE :
.member img {
width: 150px;
height: 100px;
}
JAVASCRIPT CODE :
$(document).ready(function(){
// Define destination options for both international and domestic packages
var internationalDestinations = ["Japan", "Korea", "Indonesia", "Brunei", "Singapore", "Thailand"];
var domesticDestinations = ["Langkawi", "Tioman", "Kuching", "Ipoh", "Cameron", "Kapas"];
// Define cost per day for food options
var foodCostPerDay = {
breakfast: 50,
lunch: 150,
dinner: 150
};
});
});
});
OUTPUT DISPLAY :
i. MAIN PAGE