-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1014 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="./fontawesome-free-6.5.1-web/css/all.css">
<title>Dictionary</title>
</head>
<body>
<div id="bg"></div>
<div id="mica"></div>
<form id="searchboxContainer" onsubmit="buttonSearch($('#inputWord').val()); return false">
<i class="icon fa-solid fa-chevron-left" id="prev" onclick="prev()" title="Previous"></i>
<input type="text" id="inputWord" placeholder="Look up a word or translate" onmouseover="$(this).focus()" autofocus>
<i class="icon fa-solid fa-arrow-up-right-from-square" id="popup" title="Pop-up searchbox" onclick="popup()"></i>
<input type="submit" hidden>
</form>
<div id="resultContainer">
<div id="result"></div>
</div>
<div id="version">
Version 24w05a.
</div>
<script>
window.electron = require("electron")
</script>
<script src="front.js"></script>
</body>
</html>