-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 2.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="description" content="Extension that will help you to expand your vocabulary. Add words to the dictionary and they will be occasionally shown as pop-up cards while you are surfing the internet."/>
<title>EachWord - expand your vocabulary</title>
<meta name="description" content=""/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="shortcut icon" href="favicon.png"/>
<link rel="stylesheet" href="styles/animation.css"/>
<link rel="stylesheet" href="styles/fonts.css"/>
<link rel="stylesheet" href="styles/main.css"/>
<link rel="stylesheet" href="styles/media.css"/>
<link rel="canonical" href="https://eachword.ru">
<script src="scripts/main.js"></script>
<script>
// Redirect user if it is not secure connection.
if (location.protocol == "http:") {
location.href = "https:" + location.href.substring(location.protocol.length);
}
</script>
</head>
<body>
<section class="content_wrap">
<div class="main_content">
<div class="left_wrap">
<a href="."><img alt="EachWord" src="images/logo.png" class="logo fade_in_right"></a>
</div>
<div class="right_wrap">
<div class="text">
<span class="string1">Hello</span>
<span class="string2">We can help you</span>
<span class="string3">to learn</span>
<span class="string4">new languages</span>
<span class="string5">Just try it</span>
</div>
<div class="browsers">
<div class="active">
<a href="https://chrome.google.com/webstore/detail/eachword-expand-your-voca/ndbpgappknhobbikhmjenceoklpaalam?utm_source=chrome-app-launcher-info-dialog">
<img src="images/chrome.png" alt="Chrome">
<div class="button">Chrome</div>
</a>
<span>Chrome Web Store</span>
</div>
<div>
<img src="images/opera.png" alt="Opera">
<div>
<a href="#" class="button" disabled>Opera</a>
<span class="disabled_text">Coming soon</span>
</div>
</div>
<div>
<img src="images/ffox.png" alt="Firefox">
<div>
<a href="#" class="button" disabled>Firefox</a>
<span class="disabled_text">Coming soon</span>
</div>
</div>
</div>
</div>
</div>
<footer class="footer_wrap">
<span>© 2017 EachWord</span>
</footer>
</section>
</body>
</html>