This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1a.html
87 lines (67 loc) · 3.19 KB
/
1a.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<!-- saved from url=(0039)/1.html -->
<html lang="en"><!--<![endif]--><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Time Travellers of the Ticking Tock</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="/stylesheets/base.css">
<link rel="stylesheet" href="/stylesheets/skeleton.css">
<link rel="stylesheet" href="/stylesheets/layout.css">
<!--[if lt IE 9]>
<script src="images/http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-touch-icon-114x114.png">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<!-- Delete everything in this .container and get started on your own site! -->
<!-- ================================================== -->
<!-- ================================================== -->
<div class="container">
<div class="sixteen columns" id="topbanner">
<!-- PAGE HEADER -->
<h3>You came in the Centre Street Entrance</h3>
<!-- CONTENT -->
<p>Ask a security guard or an education assist wearing a "Waltee" t-shirt for help getting to "The Chamber of Wonders."</p>
<p><a href="2.html"><img src="images/waltee.JPG" id="tm" alt="Centre Street Entrance" style="width:48%"><img src="images/security.JPG" id="tm" alt="Centre Street Entrance" style="margin-left: 3%; width:48%;"></a></p>
<p>OR </p>
<p>Walk through the first set of glass doors. Walk down the steps and through the second set of glass doors. Take a left, and on your right you will see an elevator. Take the elevator to Level 2a. Walk straight forward past the first column. Take a right into the Chamber of Wonders. The first area is the armory, walk through the door on your left to get in.</p>
<!-- /CONTENT -->
<!-- NAV -->
<a href="2.html">2 ></a>
<!-- /NAV -->
<!-- ================================================== -->
<!-- ================================================== -->
</div>
<input id="image" type="file" accept="image/*;capture=camera">
<script>
var image = document.getElementById("image");
image.onchange = function (event) {
var formData = new FormData();
formData.append("uuid", "as");
formData.append("prompt", "test");
formData.append("image", event.target.files[0]);
var request = new XMLHttpRequest();
request.open("POST", "image");
request.send(formData);
};
</script>
</div><!-- container -->
<!-- End Document
================================================== -->
</body>
</html>