-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (77 loc) · 4.13 KB
/
index.html
File metadata and controls
91 lines (77 loc) · 4.13 KB
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
<!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">
<meta name="robots" content="index, follow" />
<meta name="keywords" content="Study Room, Vocabulary, Grammar, Study, English, ESL, TESOL, IELTS, TMD Studios, Almin Piric">
<meta name="description" content="Boost your vocabulary with fun and interactive grammar games! Perfect for students and language learners.">
<meta property="og:image" content="https://tmdstudios.files.wordpress.com/2023/03/studybg.png" />
<meta property="og:title" content="Study Room">
<meta property="og:description" content="Boost your vocabulary with fun and interactive grammar games! Perfect for students and language learners.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://studyroom.up.railway.app/">
<meta name="twitter:title" content="Study Room">
<meta name="twitter:description" content="Boost your vocabulary with fun and interactive grammar games! Perfect for students and language learners.">
<meta name="twitter:image" content="https://tmdstudios.files.wordpress.com/2023/03/studybg.png">
<meta name="twitter:card" value="summary">
<link rel="canonical" href="https://studyroom.up.railway.app/">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="media/favicon.ico?" type="image/x-icon" />
<title>Study Room - Fun & Interactive Vocabulary Games for Students</title>
</head>
<body>
<div id="welcome"><img src="media/studyBg.png" alt="Study Room Logo"/></div>
<div id="menu">
<h3 id="openMenu" onclick="showOptions()">Get Started</h3>
<div id="options">
<div id="option1" class="option"><p onclick="activitySelect(1)">Fill in the Blanks</p></div>
<div id="option2" class="option"><p onclick="activitySelect(2)">Regular & Irregular Verbs</p></div>
<div id="option3" class="option"><p onclick="activitySelect(3)">Conjugation</p></div>
<div id="option4" class="option"><p onclick="activitySelect(4)">Unscramble the Word</p></div>
</div>
</div>
<div id="activity">
<div id="timer"></div>
<div id="penalty" class="penalty">No Penalty</div>
<div id="wordsRemaining"></div>
<div id="wordBank">
<div id="wordRow"></div>
</div>
<div id="question"></div>
</div>
<div id="leaderboard"></div>
<div id="banner"><a href="https://tmdstudios.github.io/" target="_blank"><img src="media/tmdLogo.png" alt="TMD Studios Logo"/></a></div>
<p id="credits">Profanity Filter courtesy of <a href="https://www.purgomalum.com/" target="_blank">PurgoMalum</a></p>
<div id="info" onclick="showInfo()"><p>i</p></div>
<div id="overlay"><p>Loading...</p></div>
<div id="correct"></div>
<div id="incorrect"></div>
<div id="infoBox" onclick="hideInfo()"></div>
<div id="recapBox" onclick="nextMistake()"></div>
<div id="mistakeForm">
<p>Report a mistake</p>
<input id="mistakeWord" type="text" placeholder="Word"/>
<textarea id="mistakeIssue" type="text" placeholder="Issue" rows="4"></textarea>
<input id="mistakeAuthor" type="text" placeholder="Your Name (Optional)"/>
<button onclick="submitMistake()">Submit</button>
</div>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://studyroom.up.railway.app/",
"name": "Study Room",
"description": "Boost your vocabulary with fun and interactive grammar games! Perfect for students and language learners.",
"logo": "https://tmdstudios.files.wordpress.com/2023/03/studybg.png",
"sameAs": [
"https://www.linkedin.com/in/alminpiric/",
"https://github.com/TMDStudios"
]
}
</script>
</body>
</html>