-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (68 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vocabulary</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="https://fonts.googleapis.com/css?family=Asul|Marck+Script|Exo+2:100|Amita|Dosis|Nunito|Handlee" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#ff8822">
<link rel="icon" href="./favicon.ico">
<link rel="manifest" href="manifest.json">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85766916-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="horizontal">
<div class="vertical">
<div class="word">vocabulary</div>
<div class="description">set of words that define language linguistic nature</div>
<div class="example">People misleadingly propose for lack of words in English dictionary, when on the contrary it's much richer than most of english-speakers imagine</div>
<input type="text" id="search" autofocus autocomplete="off" class="optional">
<div class="noteWrapper optional">
<div class="note">
<img src="assets/arrow.png" alt="">
Search for words and <br>by description over here
</div>
</div>
</div>
<div class="note2 optional">
Hit <strong>space</strong> key or <strong>touch</strong> the page to switch to next
</div>
</div>
<footer class="optional">
<div class="horizontal">
<div class="vertical">
<div class="text">
Crafted with <span class="heart">❤</span> by George Gach
</div>
<br>
<div class="credits">
Many thanks to <a href="https://fonts.google.com/"><b>Google Fonts</b></a> and <a href="http://magoosh.com/"><strong>Magoosh</strong></a> for being awesome!
</div>
</div>
</div>
</footer>
<script src="js/words.js"></script>
<script src="js/script.js"></script>
<script>
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js', { scope: './' })
.then(function(registration) {
console.log('Service Worker Registered');
});
navigator.serviceWorker.ready.then(function(registration) {
console.log('Service Worker Ready');
});
}
</script>
</body>
</html>