-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.html
More file actions
31 lines (28 loc) · 854 Bytes
/
Copy pathposts.html
File metadata and controls
31 lines (28 loc) · 854 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=devide-width, initial scale 1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Menu</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<h1>Postagens</h1>
<div class="navbar">
<a href="index.html">HOME</a>
<a class="active" href="#">POSTAGENS</a>
<a href="album.html">ALBUNS</a>
<a href="todo.html">TO-DOs</a>
</div>
<table id="tabelaposts">
<tr>
<th>User ID</th>
<th>ID</th>
<th>Title</th>
<th>Body</th>
</tr>
</table>
<script src="script.js"></script>
</body>
</html>