diff options
author | Pacien TRAN-GIRARD | 2014-03-04 21:14:12 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-03-04 21:14:12 +0100 |
commit | 6918bd0a59173c9cd30756d70d5b16f358148d67 (patch) | |
tree | b8b909ba186027defbedb04cd160163a2a42d816 /website/applet.html | |
parent | 5316669152b5c50ae49a923e737b00b2c9e708b7 (diff) | |
download | esieequest-6918bd0a59173c9cd30756d70d5b16f358148d67.tar.gz |
Add applet embed page
Diffstat (limited to 'website/applet.html')
-rw-r--r-- | website/applet.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/website/applet.html b/website/applet.html new file mode 100644 index 0000000..5601ac4 --- /dev/null +++ b/website/applet.html | |||
@@ -0,0 +1,26 @@ | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>ESIEEquest - Applet</title> | ||
6 | |||
7 | <style type="text/css"> | ||
8 | body { | ||
9 | margin: 0; | ||
10 | padding: 0; | ||
11 | } | ||
12 | object { | ||
13 | position: absolute; | ||
14 | width: 100%; | ||
15 | height: 100%; | ||
16 | } | ||
17 | </style> | ||
18 | </head> | ||
19 | <body> | ||
20 | <object type="application/x-java-applet"> | ||
21 | <param name="code" value="esieequest.Main" /> | ||
22 | <param name="archive" value="/game/esieequest.jar" /> | ||
23 | <p>Java ≥7 is required to run this game.<br>Click <a href="http://java.com/en/download/manual.jsp">here</a> to get the latest Java Runtime Environment.</p> | ||
24 | </object> | ||
25 | </body> | ||
26 | </html> \ No newline at end of file | ||