-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
66 lines (63 loc) · 2.37 KB
/
community.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
<!DOCTYPE html>
<html lang="en">
<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 - Community</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/themes/dracula.css">
</head>
<body>
<header class="header">
<div class="header__logo--container">
<img class="header__logo" src="./assets/img/logo.svg" alt="logo">
</div>
<input class="search-bar" type="search" placeholder="Busque por algo">
<div class="header__buttons">
<button class="btn-search"><em class="fas fa-search fa-2x"></em></button>
<button class="close-search hide"><em class="fas fa-times fa-2x"></em></button>
<button class="btn-close hide"><em class="fas fa-times fa-2x"></em></button>
<button class="btn-toggle"><em class="fas fa-bars fa-2x"></em></button>
</div>
<div class="header__profile">
<img class="header__profile--img" src="./assets/img/user.png" alt="user img">
<p class="header__profile--name">Harry</p>
</div>
</header>
<main class="main">
<aside class="menu">
<h3 class="title">menu</h3>
<a href="index.html" class="menu__item">
<div class="btn-code">
<em class="fas fa-code"></em>
</div>
<p class="menu__item--name">Editor de Código</p>
</a>
<a href="community.html" class="menu__item active">
<div class="btn-users">
<em class="fas fa-users"></em>
</div>
<p class="menu__item--name">Comunidade</p>
</a>
<div class="horizontal-line"></div>
<div class="menu__profile">
<img class="menu__profile--img" src="./assets/img/user.png" alt=''>
<p class="menu__profile--name">André</p>
</div>
</aside>
<section class="community">
</main>
<script src="https://kit.fontawesome.com/8db75cb122.js" crossorigin="anonymous"></script>
<script src="./assets/js/menu-buttons.js"></script>
<script src="./assets/js/community.js"></script>
<script src="//unpkg.com/@highlightjs/cdn-assets@10.7.2/highlight.min.js"></script>
<script defer>
document.addEventListener('DOMContentLoaded', (event) => {
document.querySelectorAll('code').forEach((block) => {
hljs.highlightElement(block);
});
});
</script>
</body>
</html>