-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
78 lines (74 loc) · 3.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Google Index Search">
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<meta name="author" content="lumpysoft.com">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<title>Google Index Search</title>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<script defer src="js/light.min.js"></script>
<script defer src="js/fontawesome.min.js"></script>
<script defer src="js/brands.min.js"></script>
</head>
<body>
<h1>lumpysoft.com</h1>
<p>Google index search</p>
<div id="search-bar">
<div id="dropdown">
<button id="dropdown-button">Video<i class="fal fa-tv-retro"></i></button>
<div id="dropdown-menu">
<ul class="dropdown-submenu">
<li value="tv-retro"><i class="fal fa-tv-retro"></i><span>Video</span></li>
<li value="headphones"><i class="fal fa-headphones"></i><span>Audio</span></li>
<li value="book"><i class="fal fa-book"></i><span>Ebook</span></li>
<li value="images"><i class="fal fa-images"></i><span>Pictures</span></li>
<li value="gamepad"><i class="fal fa-gamepad"></i><span>Software/Games</span></li>
<li class="spacer">
<hr>
</li>
<li value="file-archive"><i class="fal fa-file-archive"></i><span>Compressed</span></li>
</ul>
</div>
</div>
<input id="search-box" placeholder="Use a comma for multiple terms ..." autofocus>
<button id="search-button"><i class="fal fa-search"></i></button>
</div>
<div id="donations">
<span>Donate</span><br />
<a href="https://www.paypal.me/level42" class="donate donate-pp"><i class="fab fa-paypal"></i>PayPal</a>
<a href="bitcoin:1Fyyd8kXAaeHfirTofxpDqBNUkFHHCzXWL" class="donate donate-btc"><i
class="fab fa-btc"></i>1Fyyd8kXAaeHfirTofxpDqBNUkFHHCzXWL</a>
</div>
<div id="ad">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- lumpysoft.com (responsive) -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-7693179187997374"
data-ad-slot="4998011866" data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<p><a href="http://ultra64.ca">©ultra64.ca</a> - <a href="https://github.com/level42ca/lumpysoft">Open
Source!</a></p>
<p class="credits">* Special thanks to <a href="https://github.com/kevgk">kevgk</a></p>
</body>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-8606514-3', 'auto');
ga('send', 'pageview');
</script>
<script src="js/menu.js"></script>
</html>