Contact: +6017-761 9288
This is a 100% project assessment. There is NO Turnitin requirement for this unit.
There is 2 main requirement for this unit:
1. NO usage of web authoring tool.
2. HTML & JavaScript code are compulsory.
Java applets are optional in your project.
I will suggest you to be a better editor, something like Notepad++.
Get Notepad++ from https://notepad-plus-plus.org/
Set the Language to HTML when you code your page.
Run - Launch to web browser directly from Notepad++.
For the newer version of Notepad++, this launch to browser feature is no longer available.
You will need to save your file and launch it manually in the browser.
Make sure it is not a web page authoring tool. Check with 'view source' if you are unsure.
Useful link for this unit: www.w3schools.com
Q: Do I do my project in HTML4 or HTML5?
A: It doesn't matter if your project is done in HTML4 or HTML5 or both.
Q: Can I option NOT to do documentation?
A: No, there is a lot of marks for your documentation. It will be difficult to pass without it.
Q: Can I copy information and pictures on the Internet for this project?
A: You may use pictures and information found on the Internet/websites but do NOT use its codes.
Q: What if I can't meet JavaScript requirement?
A: The JavaScript requirement MUST be met. You can use document.write() to help you. For example, converting
<IMG SRC=https://www.google.com/images/srpr/logo11w.png
HEIGHT=100
WIDTH=100
BORDER=3>
with
<script>
document.write("<IMG SRC=https://www.google.com/images/srpr/logo11w.png HEIGHT=100 WIDTH=100 BORDER=3>");
</script>