-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (41 loc) · 1.38 KB
/
index.html
File metadata and controls
55 lines (41 loc) · 1.38 KB
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
<!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="assets/css/style.css">
<title>Portifolio dashboard</title>
</head>
<body>
<section class="peopleuser" id="peopleuser">
<img class="close" id="close" src="assets/img/close.svg" alt="">
<div class="container-seguidore">
<h1 class="title-seguidores">Seguidores</h1>
<div class="seguidores" id="seguidores">
</div>
</div>
<div class="container-seguindo" id="container-seguindo">
<h1 class="title-seguindo">Seguindo</h1>
<div class="seguindo" id="seguindo">
</div>
</div>
</section>
<main class="container">
<section class="menu">
<div class="box" id="box-user">
</div>
<div class="box" id="box-contact">
</div>
<div class="box" id="box-bio">
</div>
</section>
<section class="content">
<div class="box" id="box-projects">
</div>
<div class="content-skills" id="box-skills">
</div>
</section>
</main>
<script src="assets/js/main.js"></script>
</body>
</html>