-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (70 loc) · 2.51 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
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Bongle</title>
<meta name="description" content="Bongle, the cats favourite search engine." />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="preload" fetchpriority="high" as="image" href="images/cat/normal_cat.webp" type="image/webp" />
</head>
<body>
<header>
<a href="https://mail.google.com/mail/u/0/?tab=wm&ogbl#inbox" class="header-link">
Bmail
</a>
<a href="https://www.google.es/imghp?hl=es&tab=wi&ogbl" class="header-link">
Images
</a>
<a href="https://about.google/intl/es/products/?tab=rh">
<img class="apps-icon" alt="apps" src="images/apps.webp" title="Aplicaciones de Bongle" />
</a>
<a title="Go to your account" href="https://myaccount.google.com/?utm_source=OGB&tab=rk&utm_medium=act&pli=1&nlr=1">
<video class="profile-icon" autoplay muted loop>
<source src="images/piano_cat.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
</a>
</header>
<form>
<img id="keyboard-cat" src="images/cat/normal_cat.webp" alt="cat typing on keyboard" />
<div id="search-container" tabindex="0">
<img src="images/lens_cat.webp" alt="search image" class="search-icon" />
<input type="text" id="search-input" name="q" placeholder="Search some cats :3" autofocus="true"
autocomplete="off" />
<img id="clear-search-icon" src="images/clear_input.webp" onclick="clearInput()" />
</div>
<div class="search-buttons-container">
<div class="search-button">
<input type="submit" value="Bongle Search" />
</div>
<div class="search-button">
<input type="button" value="I'm Feeling Lucky" onclick="getLuck()" />
</div>
</div>
</form>
<footer>
<div id="cat-parade"></div>
<div class="footer-info">
<div class="localization-info">
<img id="change-localization-icon" alt="Change localization" />
<span id="localization"></span>
</div>
<button id="love-message">
<span class="emoji">❤</span>
Made with love :3
<span class="emoji">❤</span>
</button>
</div>
</footer>
</body>
<script src="js/main.js"></script>
<script src="js/catparade.js"></script>
<script>
initKeyboardCat()
initLocalization()
initSearcher()
//window.onunload = function () { }
</script>
</html>