-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (36 loc) · 2.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Comp 523 Game</title>
<noscript>
<p>Sorry, your browser does not support JavaScript.</p>
</noscript>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5.0/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5.0/dijit/themes/claro/claro.css";
@import "css/application.css";
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: {'myapp' : 'widgets'}
};
if(!(navigator.userAgent.indexOf("Firefox")>=0 ||navigator.userAgent.indexOf("Chrome")>=0 || navigator.userAgent.indexOf("Opera")>=0 || navigator.userAgent.indexOf("Safari")>=0))){
document.write("I see you aren't using Firefox or Google Chrome... tsk. To play this game you will need one of them. <br /><br /> Chrome: <a href = 'http://www.google.com/chrome/intl/en/landing_chrome.html?hl=en'>here</a> <br /><br /> or <br /><br /> Firefox: <a href='http://www.mozilla.com/en-US/firefox/firefox.html'>here</a> <br /><br /> or <br /><br /> Opera: <a href='http://www.opera.com/browser/download/'>here</a> <br /><br /> or <br /><br /> Safari: <a href='http://www.apple.com/safari/'>here</a>");
}
</script>
</head>
<body class='claro'>
<br>
<div align='center'><h1><font color='blue' size='8'>Return to Castle Dookenstein</font></h1></div>
<br>
<hr>
<br>
<p><font size='3'>This game is intended to be used on <strong>Chrome, Firefox, Opera, or Safari</strong> browsers, other browsers may work with the game, but it is not guaranteed. Internet Explorer will not work with the game. This game uses a <strong>built in text-to-speech function</strong> that is designed for this game, <strong>so using other screen readers may misinterpret the site so please use the one provided in the game</strong>. Accessibility options can be reached through the settings menu to adjust the speed or volume of the text-to-speech and the size or color of the text.</font></p>
<div align='center'><br><img src="images/castle_final.jpg" alt="Castle Dookenstein" height='329' width='607'/>
<br><font size='5'><a href="game.html">Click here to continue to the game</a></font></div>
</body>
</html>