-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (61 loc) · 4.02 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
<!DOCTYPE html>
<html>
<head>
<title>Latin Lookup</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style.css">
<script src="lib/jquery-3.5.1.min.js"></script>
<script src="script.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#14628f">
<meta name="msapplication-TileColor" content="#14628f">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="title" content="Latin Lookup | Free Online Latin Dictionary">
<meta name="twitter:title" content="Latin Lookup">
<meta name="description" content="Latin Lookup | Free Online Latin Dictionary">
<meta name="twitter:description" content="Free Online Latin Dictionary">
<meta property="og:title" content="Latin Lookup">
<meta property="og:description" content="Free Online Latin Dictionary">
<meta property="og:image" content="https://latinlookup.sebdoe.com/src/banner.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Latin Lookup">
<meta name="twitter:image" content="https://latinlookup.sebdoe.com/src/banner.png">
<meta name="twitter:image:alt" content="Latin Lookup">
<meta name="twitter:card" content="summary_large_image">
<meta name="robots" content="index, follow">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="twitter:creator" content="@sbd0e">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<script async src="https://arc.io/widget.min.js#gX3V1z2w"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-104800778-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-104800778-4');
</script>
</head>
<body>
<header>
<img src="logo.png" alt="Logo" class="headerLogo"/>
<span class="headerTitle">Latin Lookup</span>
</header>
<main>
<h2>Enter any Latin word or sentence</h2>
<input type="text" autocapitalize="off" autocorrect="off" placeholder="Enter any Latin word or sentence here" class="bodyInput" id="lookupInput" autofocus>
<a class="lookupButton" id="lookup" onclick="lookupText($('.bodyInput').val());">Lookup</a>
<div class="results"></div>
</main>
<footer>
<small class="footerText">Thanks to <a href="https://en.wiktionary.org/wiki/Wiktionary:Main_Page" target="_blank" class="footerLink">Wiktionary</a> for making this project possible. Created by <a href="https://github.com/sd0e" target="_blank" class="footerLink">@sd0e</a> and contributed to by <a href="https://github.com/TheVerl" target="_blank" class="footerLink">@TheVerl</a>, <a href="https://github.com/Mertzenich" target="_blank" class="footerLink">@Mertzenich</a> and <a href="https://github.com/James-Livesey" target="_blank" class="footerLink">@James-Livesey</a>.</small>
</footer>
</body>
</html>