-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (28 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css"/>
<link href="https://fonts.googleapis.com/css?family=Song+Myung" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<title>TitleTrek</title>
</head>
<body>
<div id="background"></div>
<header><img src="assets/images/reel.png" alt="reel" /></header>
<h1 id="mainh1">TitleTrek 🎫</h1>
<h2 id="line">Picture Puzzles for Movie Masters</h2>
<h2 id="orientation"> Please turn your device. <br/> This page is best viewed in landscape mode.</h2>
<button class="level" id ="novice" onclick="redirectToEmojiGame()">Novice Trek</button>
<button class="level" id ="advanced" onclick="redirectToGifGame()">Advanced Trek</button>
<script>
function redirectToEmojiGame() {
window.location.href = "NoviceTrek.html";
}
function redirectToGifGame() {
window.location.href = "AdvancedTrek.html";
}
</script>
</body>
</html>