Login or Create an Account to view the mark scheme, comment, and add to a test
An online book store is comprised of several elements, including typical header, sidebar and footer components.
(a).
Publishers wish to place a banner on the site to advertise their best seller. Given many shoppers access the website on their mobile phone, suggest a sensible location on the website in order to maximise sales - justify your recommendation.
[2](b).
Identify two pieces of information that, by convention, would appear in the footer of the website
[2]A search form in the website sidebar is used to help customers find specific books. The web form is coded as follows:
<head>
<script>
function validateForm() {
var x = document.forms["myForm"]["title"].value;
if (x == "") {
alert("Title must be filled out");
return false;
}
}
</script>
</head>
<body>
<h2>Book Search Form</h2>
<form name="myForm" action="/searchBooks.php" onsubmit="return validateForm()" method="post">
<select name="format">
<option>Paperback</option>
<option>Hardback</option>
</select>
Title: <input name="title" type="text" /><br />
Author: <input name="author" type="text" /><br />
Publisher: <input name="publisher" type="text" /><br />
<input type="submit" value="Search"/>
</form>
</body>
(c).
Identify the two client side languages used in the above example
[2](d).
Describe the sequence of actions carried out to complete a successful search
[3]Extended Response9 MarksShared
1 Use7 Views0 Likes