-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (132 loc) · 7.09 KB
/
Copy pathindex.html
File metadata and controls
148 lines (132 loc) · 7.09 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<title>My Dictionary</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,
html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("./assets/dictionaries.jpg");
min-height: 75%;
}
.menu {
display: none;
}
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right"
href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i
class="fa fa-bars"></i></a>
<a href="#" class="w3-bar-item w3-button w3-padding-large">HOME</a>
<a href="#about" class="w3-bar-item w3-button w3-padding-large w3-hide-small">ABOUT</a>
<a href="#contacts" class="w3-bar-item w3-button w3-padding-large w3-hide-small">CONTACTS</a>
<a href="#download" class="w3-bar-item w3-button w3-padding-large w3-hide-small">DOWNLOAD</a>
<div class="w3-dropdown-hover w3-hide-small">
<button class="w3-padding-large w3-button" title="More">MORE <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="#privacy_policy" id="privacy_policy_button" class="w3-bar-item w3-button">PRIVACY
POLICY</a>
<a href="#terms_of_service" id="terms_of_service_button" class="w3-bar-item w3-button">TERMS OF
SERVICE</a>
</div>
</div>
</div>
</div>
<!-- Navbar on small screens (remove the onclick attribute if you want the navbar to always show on top of the content when clicking on the links) -->
<div id="navDemo" class="w3-bar-block w3-black w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<a href="#about" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">ABOUT</a>
<a href="#contacts" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">CONTACTS</a>
<a href="#download" class="w3-bar-item w3-button w3-padding-large" onclick="myFunction()">DOWNLOAD</a>
<a href="#privacy_policy" id="privacy_policy_button_navDemo" class="w3-bar-item w3-button w3-padding-large"
onclick="myFunction()">PRIVACY POLICY</a>
<a href="#terms_of_service" id="terms_of_service_button_navDemo" class="w3-bar-item w3-button w3-padding-large"
onclick="myFunction()">TERMS OF SERVICE</a>
</div>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
</header>
<!-- Add a background color and large text to the whole page -->
<div class="w3-sand w3-grayscale w3-large">
<!-- About Container -->
<div class="w3-container" id="about">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">ABOUT THE APPLICATION</span></h5>
<p>The app is designed for learning words from new languages.</p>
<p>All you need to do is choose a course and add a word you don't know.</p>
<p>You do not need to write down, in a notebook or on pieces of paper, all this is centrally stored on your device.</p>
<p>The application solves the problem of cluttered tables with languages, words, and translation, such as notes on OS X systems.</p>
<p>Note: </p>
<p>The application only supports iOS, in the future support for Android, macOS, Web, Windows is planned.</p>
</div>
</div>
<!-- Contact/Area Container -->
<div class="w3-container" id="contacts">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-48"><span class="w3-tag w3-wide">CONTACTS</span></h5>
<div class="w3-col m6 w3-large w3-margin-bottom">
<i class="fa fa-map-marker" style="width:30px"></i> Ukraine<br>
<i class="fa fa-envelope" style="width:30px"> </i> Email: dmytro.v.chumakov.work@gmail.com<br>
</div>
</div>
</div>
<!-- Download/Area Container -->
<div class="w3-container" id="download">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-48"><span class="w3-tag w3-wide">DOWNLOAD</span></h5>
<p style="text-align: center;">
<a href="https://apps.apple.com/us/app/mydictionaryapp/id1566886145">
<img src="assets/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg" alt="">
</a>
</p>
</div>
</div>
<!-- End page content -->
</div>
<!-- Footer -->
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
<a href="https://www.linkedin.com/in/dmytro-chumakov"><i class="fa fa-linkedin w3-hover-opacity"></i></a>
<a href="https://www.instagram.com/dmytro_chumakov"><i class="fa fa-instagram w3-hover-opacity"></i></a>
<a href="https://twitter.com/d_chumakov_work"><i class="fa fa-twitter w3-hover-opacity"></i></a>
<a href="https://github.com/dchprojects/Dictionary_App_Swift"><i class="fa fa-github w3-hover-opacity"></i></a>
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank"
class="w3-hover-text-green">w3.css</a></p>
</footer>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<script type="text/javascript">
document.getElementById("privacy_policy_button").onclick = function () {
location.href = "privacy_policy.html";
};
document.getElementById("privacy_policy_button_navDemo").onclick = function () {
location.href = "privacy_policy.html";
};
document.getElementById("terms_of_service_button").onclick = function () {
location.href = "terms_of_service.html";
};
document.getElementById("terms_of_service_button_navDemo").onclick = function () {
location.href = "terms_of_service.html";
};
</script>
</body>
</html>