-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="profile">
<div class="info">
<img src="https://avatars0.githubusercontent.com/u/19291466?s=460&v=4" alt="profile" />
<div class="user">
<h1>Lorena Montes</h1>
<p>@lorenagm</p>
</div>
</div>
<div class="edit">
<i class="fas fa-edit"></i>
<p>Edite</p>
</div>
</div>
<div class="insights">
<div class="projects">
<p>Projetos</p>
<h1>27</h1>
</div>
<div class="stars">
<p>Estrelas</p>
<h1>302</h1>
</div>
<div class="followers">
<p>Seguidores</p>
<h1>83</h1>
</div>
</div>
</div>
</body>
</html>