-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Dine Me!</title>
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="dine.css">
<script src="dine.js"></script>
</head>
<body id="outer" onload="setup()">
<div id="plate_frame">
</div>
<div id="half_time">
</div>
<div id="text">
<form method="get" action="test.php">
<div class="page">
<a name="start">Dine Me!</a><br/><br/>
So, You asked me to lunch, and I sent you this link.
Not to worry, just taking some necessary info.<br/><br/>
<div id="volume">
<a href="#who" onclick="proceed_with_sound()">🔊</a>
<a href="#who" onclick="proceed_without_sound()">🔇</a>
</div>
</div><br/>
<div class="page">
<a name="who">
Who are you?
</a><br/><br/>
<input type="text" name="who" placeholder="Paul Allen"><br/><br/>
<a href="#where">Next</a>
</div><br/>
<div class="page">
Right <span class="your_name">____YOUR NAME___</span>....<br/><br/>
<a name="where">
Where are we meeting up?
</a><br/><br/>
<input style="width:500px" type="text" name="where" placeholder="Dorsia, 3 Cromwell Road, Kensington, SW7 2HR"><br/><br/>
<a href="#why">Next</a>
</div><br/>
</form>
</div>
<audio id="audio" loop>
<source src="sussudio-8bit.mp3" type="audio/mpeg">
</audio>
</body>
</html>