-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidade.html
90 lines (80 loc) · 2.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter&family=Roboto+Mono&display=swap" rel="stylesheet">
<title>Alura Dev</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/codigo_comunidade.css">
<link rel="stylesheet" href="css/darcula.css">
<link rel="stylesheet" href="css/cabecalho.css">
<link rel="stylesheet" href="css/menu.css">
</head>
<body>
<header class="cabecalho">
<a href="#" class="cabecalho__logo">
<img src="img/Logo.svg" alt="Logo Alura Dev" class="cabecalho__logo-img">
</a>
<div class="cabecalho__pesquisar">
<input type="checkbox" name="check_pesquisa" id="check_pesquisa">
<label for="check_pesquisa" class="check_pesquisa-abrir">
<img src="img/Lupa.svg" alt="Lupa - Abrir pesquisa">
</label>
<label for="check_pesquisa" class="check_pesquisa-fechar">
<img src="img/botao-fechar.svg" alt="Botão fechar pesquisa">
</label>
<input type="search" name="pesquisa" id="pesquisa" class="cabecalho__pesquisa_campo"
placeholder="Busque por algo">
</div>
</header>
<main class="main_com">
<section class="menu">
<nav class="nav">
<input type="checkbox" name="nav__botao" id="nav__botao" class="nav__botao">
<label class="nav__icone" for="nav__botao">
<span class="nav__-icone"></span>
</label>
<h2 class="menu_nome">MENU</h2>
<ul class="nav__menu">
<li>
<a href="index.html">
<span class="menu__icones">
<img src="img/editor.svg" alt="Icone editor de codigo">
</span>
<h3>Editor de Código</h3>
</a>
</li>
<li>
<a href="comunidade.html" class="ativo">
<span class="menu__icones">
<img src="img/comunidade.svg" alt="Icone comunidade">
</span>
<h3>Comunidade</h3>
</a>
</li>
<li>
<a href="#" class="nav__menu_user">
<img id="img-user" src="img/foto-user.png" alt="Foto do usuário">
<h3>Harry</h3>
</a>
</li>
</ul>
</nav>
</section>
<section class="codigos">
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js"></script>
<script src="js/comunidade.js"></script>
<script>
const codigos = document.querySelectorAll('.codigo')
codigos.forEach(codigo => {
hljs.highlightElement(codigo)
})
</script>
</body>
</html>