-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithub.html
More file actions
63 lines (62 loc) · 2.37 KB
/
Github.html
File metadata and controls
63 lines (62 loc) · 2.37 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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" />
<link rel="stylesheet" href="Github.css" />
<title>HEADER TESTE</title>
</head>
<body>
<div class="header" id="header">
<button onclick="toggleSidebar()" class="btn_icon_header">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="currentColor"
class="bi bi-list"
viewBox="0 0 16 16"
>
<path
fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"
/>
</svg>
</button>
<div class="logo">
<img src="./Logo.jpg" class="imagem_logo" alt="Logo" />
</div>
<div class="nav_header" id="nav_header">
<button onclick="toggleSidebar()" class="btn_icon_header">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
class="bi bi-backspace"
viewBox="0 0 16 16"
>
<path
d="M5.83 5.146a.5.5 0 0 0 0 .708L7.975 8l-2.147 2.146a.5.5 0 0 0 .707.708l2.147-2.147 2.146 2.147a.5.5 0 0 0 .707-.708L9.39 8l2.146-2.146a.5.5 0 0 0-.707-.708L8.683 7.293 6.536 5.146a.5.5 0 0 0-.707 0z"
/>
<path
d="M13.683 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-7.08a2 2 0 0 1-1.519-.698L.241 8.65a1 1 0 0 1 0-1.302L5.084 1.7A2 2 0 0 1 6.603 1h7.08zm-7.08 1a1 1 0 0 0-.76.35L1 8l4.844 5.65a1 1 0 0 0 .759.35h7.08a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-7.08z"
/>
</svg>
</button>
<a href="#">Home</a>
<a href="#">Contato</a>
<a href="#">Mercadorias</a>
<a href="#">Sobre Nós</a>
</div>
</div>
<form>
<h3>Login</h3>
<input id="email" type="email" name="email" placeholder="E-mail">
<input id="password" type="password" name="senha" placeholder="********">
<input type="submit" name="acao" value="Enviar">
</form>
</body>
<script src="Github.js"></script>
</html>