An international charitable organisation that works to conserve and protect endangered Bee species has approached you to develop a solution that will raise awareness and track the decreasing number of Bee species. The charitable organisation wants to encourage users to conserve and to take an interest in Bees and support its population. (a) Identify and describe two new emerging technologies which could be used to safe Bee species. (4 marks) (b) Discuss limitations of each technology that you identified in part (a). (2 marks) (C) Suppose that you are going to make a website to aware public about the conservation and protecting endangered Bee species. Explain the use of a suitable page structure with detail content for the website. (5 marks) (d) Write a sample Document Object Model of the home page. (2 marks)
(a) This topic does not apply to HTML/JavaScript Web Application.
(b) This question also does not apply because it follows from (a).
(c) - (d) Here you can read about DOM.
<!-- Example -->
<html>
<head>
<script>
// running this function when loading a document
window.onload = function() {
// creating multiple elements in a blank HTML page
heading = document.createElement("h1");
heading_text = document.createTextNode("Big Head!");
heading.appendChild(heading_text);
document.body.appendChild(heading);
}
</script>
</head>
<body>
</body>
</html>
Comments
Leave a comment