-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrabalhos.html
39 lines (34 loc) · 1.17 KB
/
Trabalhos.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
35
36
37
38
39
<!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">
<link rel="stylesheet" href="menu.css">
<title>Home</title>
</head>
<body>
<main>
<nav>
<!-- Ícone do Menu Sanduíche (Hambúrguer) -->
<div class="menu-icon" id="menu-icon">
<div></div>
<div></div>
<div></div>
</div>
<!-- Menu -->
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="sobreMim.html">About Me</a></li>
<li><a href="trabalhos.html">Works</a></li>
<li><a href="contato.html">Contact</a></li>
</ul>
</nav>
<script>
// Script para exibir/ocultar o menu ao clicar no ícone
const menuIcon = document.getElementById('menu-icon');
const menu = document.getElementById('menu');
menuIcon.addEventListener('click', () => {
menu.classList.toggle('show');
});
</script>