-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
43 lines (38 loc) · 1.47 KB
/
menu.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
40
41
42
43
<!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="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="css/aula04.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Menu</title>
</head>
<body>
<header>
<div class="container">
<div class="topnav">
<a href="#home" class="active">
<h1>Aula 04</h1>
</a>
<div id="menu">
<a href="#home">Página</a>
<a href="#about">Quem somos</a>
<a href="#contact">Fale conosco</a>
</div>
<a href="#" class="icon">
<!-- onclick="menu()" -->
<i class="fa fa-bars"></i>
</a>
</div>
</div>
</header>
<main>
<div class="container">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum sit excepturi doloremque ducimus? Ducimus aperiam fugit blanditiis, quasi expedita non illum qui maxime exercitationem, cum laudantium, dignissimos eos voluptas quae!
</p>
</div>
</main>
<script src="js/aula04.js"></script>
</body>
</html>