-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (22 loc) · 754 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (22 loc) · 754 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
<DOCTYPE html>
<html lang="pt-br"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header> <h1> Galeria de Fotos </h1></header>
<main>
<div class="busca-container">
<input type="text" id="campo-buscador" placeholder="Busque as bandeiras">
<button id="btn-buscador">🔍</button>
</div>
<div id="grid-de-fotos"></div>
<p id="msg-nenhum-resultado" style="display: none;">Nenhuma foto encontrada</p>
</main>
<footer>
<p>© 2026 Galeria de Fotos. Todos os direitos reservados.</p>
</footer>
<script src='script.js'></script>
</body>
</html>