-
Notifications
You must be signed in to change notification settings - Fork 0
/
general-panel.html
34 lines (30 loc) · 966 Bytes
/
general-panel.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
30
31
32
33
34
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GF - Painel Geral</title>
<link rel="stylesheet" href="css\reset.css">
<link rel="stylesheet" href="css\style-general-panel.css">
<link rel="icon" href="/img/cow-icon.png">
</head>
<body>
<header>
<h1>Painel Geral</h1>
</header>
<main>
<div class="nav">
<a href="index.html"><button>⇐Home</button></a>
<a href="edit-info.html"><button>Painel de edição⇒ </button></a>
</div>
<section class="span-section">
<!-- <span></span> -->
</section>
</main>
<footer>
©IRS - 2022
</footer>
<script type="module" src="script/generalPanel.js"></script>
</body>
</html>