forked from Prasanta-Hembram/Multiscript-UI-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale = 1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Multi Script Calculator</title>
<link type="text/css" href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="dropdown">
<button onclick="show_hide()" class="buttonD">L10N</button>
<!-- dropdown list items will show when we click the drop button -->
<div id="list-items">
<a href="locales/ben/ben.html">Bengali</a>
<a href="locales/eng/locale.html">English</a>
<a href="locales/hin/hin.html">Hindi(Devanagari)</a>
<a href="locales/ory/ory.html">Odiya</a>
<a href="locales/sat/sat.html">Santali(Ol Chiki)</a>
</div>
</div>
<p> Hi, This is a Multilingual Simple Calculator, where even the numbers get translated in the respective langauge. These are some
list of all the languages which are currently added to the list, feel free to add your language too if it is missing here.
</p>
<ul>
<li><a href="locales/ben/ben.html">Bengali</a></li>
<li><a href="locales/eng/locale.html">English</a></li>
<li><a href="locales/hin/hin.html">Hindi(Devanagari)</a></li>
<li><a href="locales/ory/ory.html">Odiya</a></li>
<li><a href="locales/sat/sat.html">Santali(Ol Chiki)</a></li>
</ul>
<script src="script/script.js"></script>
</body>
</html>