forked from guilhermeonrails/imersao-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 874 Bytes
/
index.html
File metadata and controls
34 lines (32 loc) · 874 Bytes
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
<!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="style.css">
<title>Base de conhecimento</title>
</head>
<body>
<header>
<h1>Base de conhecimento</h1>
<div>
<input type="text" placeholder="Digite uma linguagem de programação">
<button id="botao-busca" onclick="iniciarBusca()">Buscar</button>
</div>
</header>
<main>
<section></section>
</main>
<footer>
<footer class="footer">
<ul class="footer-links">
<li>
<a href="https://github.com/guilhermeonrails">GitHub</a>
</li>
<li>
<a href="https://www.alura.com.br/">Alura</a>
</li>
</ul>
</footer>
</body>
</html>