-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlose.html
More file actions
23 lines (23 loc) · 719 Bytes
/
lose.html
File metadata and controls
23 lines (23 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lose</title>
</head>
<body>
<center>
<h1>You LOST</h1>
<h2></h2>
<a href="random.html">Play again</a><br>
<a id="defineWord" target="_blank">Define Word</a><br>
<a href="create.html">Make your own!</a><br>
<img src="hangman/dead.png">
</center>
<script>
document.querySelector("h2").innerText="The word was: "+location.href.split("?")[1]
document.getElementById("defineWord").href="https://www.google.com/search?q=define+"+location.href.split("?")[1]
</script>
</body>
</html>