-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection.html
More file actions
68 lines (58 loc) · 1.79 KB
/
section.html
File metadata and controls
68 lines (58 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<div class="follow">
<a href="#" class="followers" target="_blank">
<span class="number-followers">0</span>
<i class="bx bx-user"></i>
followers
</a>
·
<a href="#" class="following" target="_blank">
<span class="number-following">0</span>
following
</a>
</div>
<p id="bio">nothing in biography</p>
<!--followers -->
<hr />
<div class="my-followers">
<h3>followers</h3>
<div>
<ul class="followers-list">
<li>
<a href="">
<img src="https://avatars.githubusercontent.com/u/66479859?v=4" alt="" width="20px">
</a>
</li>
</ul>
</div>
</div> <!--my-followers -->
<div class="my-followings">
<h3>followings</h3>
<div>
<ul class="following-list">
<li>
<a href="">
<img src="https://avatars.githubusercontent.com/u/66479859?v=4" alt="" width="20px">
</a>
</li>
</ul>
</div>
</div> <!--my-followings -->
<div class="social-media">
<div class="social-media-links">
<div>
<a href="#" class="git" target="_blank">
<i class='bx bxl-github'></i>
</a>
</div>
<div>
<a href="#" class="twitter" target="_blank">
<i class='bx bxl-twitter'></i>
</a>
</div>
<div>
<a href="#" class="email" target="_blank">
<i class='bx bx-envelope'></i>
</a>
</div>
</div>
</div>