-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 792 Bytes
/
index.html
File metadata and controls
19 lines (19 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<title> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="vue.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<body>
<iframe class="timer" src="https://www.youtube.com/embed/M2dhD9zR6hk" frameborder="0" allowfullscreen></iframe>
<div class="letter-board-outer">
<div class="letter-board" tabindex="0" id="letter-board" @keyup.86="add('vowel')" @keyup.67="add('consonant')" @keyup.82="reset()">
<div v-for="index in 9" class="letter-box">
<div class="letter">{{ letters[index-1] ? letters[index-1] : null }}</div>
</div>
</div>
</div>
</div>
<script src="countdown.js"></script>
</body>
</html>