-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.51 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
<!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">
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/variables.css">
<title>Profile:Card</title>
</head>
<body>
<main class="container">
<div class="card">
<div class="profile-informations">
<!-- <p><span class="city">Brazil</span></p> Perhaps I'm wrong on this -->
<img src="src/css/images/me-fundo-png.png" alt="russo-logo">
<p>João Russo<span class="age">, 20</span></p>
<hr>
<span class="position">Software Developer</span>
</div>
<div class="content">
<ul class="tabs">
<li class="info">
<p class="counter">80K</p>
<span class="counter-type">Followers</span>
</li>
<li class="info">
<p class="counter">803K</p>
<span class="counter-type">Likes</span>
</li>
<li class="info">
<p class="counter">1.4K</p>
<span class="counter-type">Photos</span>
</li>
</ul>
</div>
</div>
</main>
</body>
</html>