-
Notifications
You must be signed in to change notification settings - Fork 3
/
newtab.html
52 lines (52 loc) · 1.68 KB
/
newtab.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
<html>
<head>
<title>New LatTab</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<script type="text/javascript" src="/lib/jquery-2.0.3.min.js"></script>
</head>
<body>
<div id="text-container">
<div id="search-container">
<span id="search-icon">
<img src="./search.svg" alt="" />
</span>
<div id="search-and-exchange">
<input id="search-roots-and-proverbs" placeholder="Search latin roots" autocomplete="off"></input>
<span id="exchange-icon">
<img src="./exchange.svg" alt="" />
</span>
</span>
</form>
</div>
<div id="phrase" alt="phrase"></div>
<div id="meaning" alt="meaning"></div>
<div id="example" alt="example"></div>
</div>
<div class="change">
<div id="refresh" class="refresh">
<img src="./refresh.png" alt="refresh button" />
</div>
</div>
<div class="switch-mode">
<div id="phrases" class="mode">
<span class="refresh-type">Proverbs</span>
</div>
<div id="roots" class="mode">
<span class="refresh-type">Roots</span>
</div>
</div>
<div id="footer">
<div id="author">
<span class="title">LatTab</span> - Contributors
</div>
<div class="editors">
<a href="https://github.com/jbendercode" target="none">JbenderCode</a>
<span class="title roots">
<a href="https://github.com/shadoath" target="none">Shadoath</a></span>
</div>
</div>
<script src="newtab.js"></script>
<script src="options.js"></script>
</body>
</html>