-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidade.html
68 lines (55 loc) · 2.25 KB
/
comunidade.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Comunidade</title>
<link rel="stylesheet" href="reset.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="dracula.css">
<link rel="stylesheet" href="flexbox.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/CSS/comunidade.css">
</head>
<body class="corpoPrincipal" spellcheck="false">
<header class="cabecalho">
<a href="index.html"><img src="logo.png" class="logo" alt="logo da alura dev"></a>
<input type="search" placeholder="o que busca?" class="busca">
<img src="/img/Vectorlupa.svg" class="busca-mobile">
<img src="author.png" class="perfil">
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</header>
<main class="principal">
<nav class="menu">
<h3 class="titulo titulo-mobile" >Menu</h3>
<ul class="menu-opcoes">
<li>
<div class="menu-editor">
<img src="img/icon-editor.svg" class="editor-img">
<a href="index.html" class="menu-lista editor-txt"> Editor de código</a><br>
</div>
</li>
<li>
<div class="menu-comunidade">
<img src="img/icon-comunidade.svg" class="comunidade-img">
<a href="comunidade.html" class="menu-lista" id="comunidade-txt"> Comunidade</a>
</div>
</li>
<hr>
<li><img src="author.png" class="perfil-mobile"> </li>
</ul>
</nav>
<section class="projetos-salvos" data-projetos-salvos>
</section>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
<script type = "module" src="/componentes/carregaProjetos.js"></script>
<script src="/componentes/burguer.js"></script>
<script src="/componentes/busca.js"></script>
</body>