-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
29 lines (27 loc) · 1.13 KB
/
search.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pesquisar</title>
<link rel="icon" href="assets/images/search-icon.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body class="searchQueryPage">
<h1>Escolha o Mecanismo de Pesquisa</h1>
<main id="searchQuery">
<div id="query" class="searchQuery"></div>
<div class="buttons">
<button type="button" data-engine="google">Google</button>
<button type="button" data-engine="bing">Bing</button>
<button type="button" data-engine="youtube">YouTube</button>
<button type="button" data-engine="duckduckgo">DuckDuckGo</button>
<button type="button" data-engine="startpage">Startpage</button>
</div>
</main>
<footer>
<p>© 2024 SnumpusGx・<a href="http://github.com/snumpusgx">Github</a> - <a href="http://github.com/snumpusgx/web-search">Source Code</a></p>
</footer>
<script src="search.js"></script>
</body>
</html>