-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomunidade.html
64 lines (51 loc) · 2.52 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
<!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">
<title>Alura dev - Comunidade - Mostre ao mundo seu código</title>
<link rel="shortcut icon" href="./img/iconesite.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/styles/base16/dracula.min.css"
integrity="sha512-oDvVpANXrKQ6R5B25VO6DooEQWA7jUXleyD6oUWHChC0fjv8wAANSX7lKXtp5D6HbZ7EUxd0wjMibtpCQ+aCDw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/comunidade.css">
</head>
<body>
<main class="main-alura">
<header class="cabecalho-alura">
<div class="logo-alura">
<img src="./img/logo-plataforma.png" alt="logo alura dev">
</div>
<input type="search" name="pesquisar-code" id="pesquisar-code" placeholder="Busque por algo">
<span class="pesquisar-mobile"><i class="fas fa-search"></i></span>
<section class="avatar-alura">
<div id="logo-user">
<img src="./img/header/photo.png" alt="avatar do usuário" />
</div>
<span id="name-user">Harry</span>
</section>
<div class="menu-mobile">
<i class="fas fa-bars menu-bars" onclick="menuMobile()"></i>
</div>
</header>
<article class="editor-alura">
<section class="editor-menu">
<nav class="menu-alura">
<h2>MENU</h2>
<ul>
<li><i class="fas fa-code"></i> <a href="./index.html">Editor de código</a></li>
<li><i class="fas fa-users"></i> <a href="./comunidade.html">Comunidade</a></li>
</ul>
</nav>
</section>
<section id="editor-code-dinamico">
</section>
</article>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/highlight.min.js"></script>
<script src="./js/popular_projetos.js"></script>
</body>
</html>