-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
80 lines (68 loc) · 2.48 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
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!--link rel="manifest" href="manifest.json"-->
<meta charset="UTF-8">
<title>Learn to Type</title>
<script src="words-en.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma-rtl.min.css">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="confetti.min.js"></script><script>confetti.start()</script>
<style>
#image-div {
width: 60vh;
height: 60vh;
margin: 20px auto;
}
#image {
display: block;
width: 100%;
}
#text-div {
position: relative;
text-align: center;
}
#gray-text {
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
text-align: center;
font-size: 20vh;
color: #bbb;
line-height: 1em;
}
#black-text {
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
font-size: 20vh;
text-align: center;
line-height: 1em;
color: transparent;
}
</style>
</head>
<body>
<div class="columns" id="app">
<div class="main column has-background-white-ter">
<div class="lang_selector">
<p style="text-align: center; margin-top: 20px">
<a href="Hebrew/index.html"><img src="images/2560px-Flag_of_Israel.svg.png" style="display: inline-block; height: 150px; margin-right: 50px "></a>
<a href="English/index.html"><img src="images/2880px-Flag_of_the_United_States.svg.png" style="display: inline-block; height: 150px"></a>
</p>
</div>
<div class="apps_ad" id="ad" style="bottom: 200px;">
<p style="text-align: center; margin-bottom: 100px">
<a href="https://apps.apple.com/us/app/type-tap/id1533730810" target="_blank"><img src="images/download-on-the-app-store.png" style="display: inline-block; height: 50px; margin-right: 10px "></a>
<a href="https://play.google.com/store/apps/details?id=com.learnto.he" target="_blank"><img src="images/google-play-badge.png" style="display: inline-block; height: 50px"></a>
</p>
</div>
</div>
</div>
</body>
</html>