generated from devchallenge-io/profile-component
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (48 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/feather-icons"></script>
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Profile Component</title>
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="user">
<div class="info">
<div class="icon"></div>
<h1>Lorem Ipsum</h1>
<p>@useripsum</p>
</div>
<div class="button">
<i data-feather="edit"></i>
<p>Editar</p>
</div>
</div>
<div class="stats">
<div class="projects">
<p>Projetos</p>
<h1>27</h1>
</div>
<div class="projects">
<p>Estrelas</p>
<h1>302</h1>
</div>
<div class="projects">
<p>Seguidores</p>
<h1>83</h1>
</div>
</div>
</div>
</div>
<script>
feather.replace();
</script>
</body>
</html>