products.html 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="https://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Spellbound | Products</title>
  6. <!-- Compiled and minified CSS -->
  7. <link rel="stylesheet" href="./css/materialize.css">
  8. <!-- Compiled and minified JavaScript -->
  9. <script src="./css/materialize.min.js"></script>
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  12. <link href="https://fonts.googleapis.com/icon?family=Roboto" rel="stylesheet">
  13. </head>
  14. <body>
  15. <div class="container">
  16. <div class="row">
  17. <div class="col s12"><img width="100%" src="./img/eportheader.png"></div>
  18. <div class="col s12 m4 l2">
  19. <a class="waves-effect waves-light btn-large purple" href="./index.html">Home</a>
  20. <a class="waves-effect waves-light btn-large green" href="./evidence.html">Evidence</a>
  21. <a class="waves-effect waves-light btn-large blue active" href="./products.html">Products</a>
  22. <img width="100%" src="./img/star.gif" style="margin-top: 5px;">
  23. <audio controls style="width: 100%;margin-top: 5px;">
  24. <source src="./Products/Angevin.mp3" type="audio/mpeg">
  25. Your browser does not support the audio element.
  26. </audio>
  27. </div>
  28. <div class="col s12 m8 l10">
  29. <h1 class="center">Products</h1>
  30. </div>
  31. <div class="col s12 m8 l10">
  32. <div class="row" style="text-align: center;padding: 9px 32px;">
  33. <div class="col s12 m3 l3">
  34. <div class="btn-mtw" onclick="window.open('./Products/meetthewizard.html','_blank')">Meet the Wizard</div>
  35. The meet the wizard was targeted originally to demonstrate the quiz without the use of sound, once completed it did feel as if it was missing something and so a voice over was added to make the character come to life allowing for a more immersive experience for the user.
  36. </div>
  37. <div class="col s12 m3 l3">
  38. <div class="btn-nav" onclick="window.open('./Products/navigation.html','_blank')">Navigation Screen</div>
  39. The navigation screen followed the simplistic themes found in css/js scripts such as bootstrap. The original plan was to have the spellbound logo in the center however the logo isn't amazing and it would ruin the simplistic design I was going for.
  40. </div>
  41. <div class="col s12 m3 l3">
  42. <div class="btn-cu" onclick="window.open('./Products/contact.html','_blank')">Contact Us</div>
  43. The contact screen was fairly simple to throw together as the splashscreen was already in a position to be adapated for this use. It worked out by simply adding some extra text in a contrasting colour to make the information stand out.
  44. </div>
  45. <div class="col s12 m3 l3">
  46. <div class="btn-ss" onclick="window.open('./Products/index.html','_blank')">Splashscreen</div>
  47. The splashscreen has be through 2 phases. The first had a bland background and text that could have easily been missed but now a gradient is used to allow text and images to stand out more.
  48. </div>
  49. </div>
  50. <div class="row" style="text-align: center;padding: 9px 32px;">
  51. <div class="col s12 m3 l3 offset-m3 offset-l3">
  52. <div class="btn-qu" onclick="javascript:quiz();">Quiz</div>
  53. The quiz was where my functional side could really do its justice. I designed it to be easy to use for the younger children that the software is aimed at. I really enjoyed developing the quiz as it was simplistic yet methodical. The original idea for the quiz was to use a website instead of PowerPoint however due to the lack of software on the school machines I was unable to do it in this way.
  54. </div>
  55. <div class="col s12 m3 l3">
  56. <div class="btn-dv" onclick="window.open('./Products/trailer.html','_blank')">Demo Video</div>
  57. The demo video was an exciting project to work on. I know how to video edit so that watching a video is not a bore. I think that the video is informative and enjoyable to watch even if the quality has to be lesser than appropriate due to the file size limits.
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </body>
  63. <script type="text/javascript">
  64. function quiz() {
  65. var answer = confirm ("Please save the file then run it.")
  66. if (answer)
  67. window.location="./Products/quiz.ppsx";
  68. }
  69. </script>
  70. </html>