-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 981 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 981 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
<!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="pagina.css">
<link rel="shortcut icon" href="Imagem/OIP.jfif" type="Imagem/x-icon">
<title>Blog de Tecnologia</title>
</head>
<body>
<header>
<a href="index.html" class="header-title"><h1>Blog de Tecnologia</h1></a>
<nav>
<ul>
</ul>
<select id="categoryFilter">
<option value="all">Todas as Categorias</option>
<option value="Tecnologia">Tecnologia</option>
<option value="Ciência">Ciência</option>
<option value="Inovação">Inovação</option>
<option value="Programação">Programação</option>
</select>
</nav>
</header>
<main id="postsContainer"></main>
<script src="script.js"></script>
</body>
</html>