This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (105 loc) · 3.16 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UPE Puzzle</title>
<link rel="shortcut icon" href="favicon.ico">
<meta name="author" content="Augustus">
<meta name="shift" content="ten">
</head>
<body>
<h3>Not a Salad</h3>
<div style="width:260px; margin-top:45px;height:250px;position: fixed;top:0px;left:0px;z-index:1" onmouseover="recipeHint()" onmouseout="recipeHintLeave()" >
</div>
<div>
<ul id="ingredientList">
<li>1 clove garlic</li>
<li>1 tablespoon lemon juice</li>
<li>1 tablespoon worcestershire sauce</li>
<li>10 small capers</li>
<li>1/4 cup parmesan</li>
<li>1 egg room temperature</li>
<li>2 anchovy filets</li>
<li>1/2 cup light olive oil or canola oil</li>
<li>fresh black pepper</li>
<li>8 cups romaine lettuce</li>
<li>1 cup croutos</li>
<li>1/3 cup parmesan cheese</li>
<li>1/2 tablespoon dijon mustard</li>
</ul>
</div>
<img src="salad.jpg">
<!--
The key is three, but must be sought,
In these sites the key you must spot.
One is Larry's and its Page is the king,
Look at the bottom and there you'll see.
In index one of that second string,
You'll find the symbol that starts the key.
Of Wonder woman this you know,
Her and Hippolyta's origin is shared.
Once there, in the bottom, it lies low,
In the first of the fourth, it lies bare.
Now head to the place where time flies,
Where a minute is ten thousand hours.
In the title of this enterprise, the answer lies,
With it's last letter you finish the statement.
Now visit the place to see the list,
The one out of place will be the twist.
-->
<script>
//The scripts are not part of the game, don't waste your time analyzing it
function recipeHint() {
const ingredients = ["1 clove garlIc",
"1 tablespooN lemon juice",
"1 tableSpoon worcestershire sauce",
"10 small caPErs",
"1/4 Cup parmesan",
"1 egg room TEmperature",
"2 anchovy fiLEts",
"1/2 cup light olive oil or canola oil",
"fresh black pepper",
"8 cups roMainE lettuce",
"1 cup croutos",
"1/3 cup parmesaN cheese",
"1/2 Tablespoon dijon mustard"]
var item = document.getElementById("ingredientList");
while (item.firstChild) {
item.removeChild(item.firstChild);
}
for (i = 0; i < ingredients.length; i++){
var elmnt = document.createElement("li");
var textnode = document.createTextNode(ingredients[i]);
elmnt.appendChild(textnode)
item.appendChild(elmnt)
}
}
function recipeHintLeave() {
const ingredients = ["1 clove garlic",
"1 tablespoon lemon juice",
"1 tablespoon worcestershire sauce",
"10 small capers",
"1/4 cup parmesan",
"1 egg room temperature",
"2 anchovy filets",
"1/2 cup light olive oil or canola oil",
"fresh black pepper",
"8 cups romaine lettuce",
"1 cup croutos",
"1/3 cup parmesan cheese",
"1/2 tablespoon dijon mustard"]
var item = document.getElementById("ingredientList");
while (item.firstChild) {
item.removeChild(item.firstChild);
}
for (i = 0; i < ingredients.length; i++){
item.emp
var elmnt = document.createElement("li");
var textnode = document.createTextNode(ingredients[i]);
elmnt.appendChild(textnode)
item.appendChild(elmnt)
}
}
</script>
</body>
</html>