Spaces:
Running
Running
Update index.html
Browse files- index.html +62 -10
index.html
CHANGED
@@ -12,23 +12,75 @@
|
|
12 |
<p>Discover the top influencers in our community</p>
|
13 |
</header>
|
14 |
<main>
|
15 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<h2>Leaderboard</h2>
|
17 |
<ul>
|
18 |
<li>
|
19 |
<div>
|
20 |
<img src="https://via.placeholder.com/50x50" alt="User avatar">
|
21 |
-
<
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
28 |
</div>
|
29 |
</li>
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
</ul>
|
33 |
</section>
|
34 |
<section class="testimonials">
|
|
|
12 |
<p>Discover the top influencers in our community</p>
|
13 |
</header>
|
14 |
<main>
|
15 |
+
<div class="tabs">
|
16 |
+
<input type="radio" name="tabs" id="tab1" checked>
|
17 |
+
<label for="tab1">Tab 1</label>
|
18 |
+
<input type="radio" name="tabs" id="tab2">
|
19 |
+
<label for="tab2">Tab 2</label>
|
20 |
+
<input type="radio" name="tabs" id="tab3">
|
21 |
+
<label for="tab3">Tab 3</label>
|
22 |
+
</div>
|
23 |
+
<section class="tab-content active">
|
24 |
<h2>Leaderboard</h2>
|
25 |
<ul>
|
26 |
<li>
|
27 |
<div>
|
28 |
<img src="https://via.placeholder.com/50x50" alt="User avatar">
|
29 |
+
<div>
|
30 |
+
<h3>John Doe</h3>
|
31 |
+
<p>
|
32 |
+
<a href="#">johndoe.com</a>
|
33 |
+
<span class="mx-2">|</span>
|
34 |
+
<a href="#">@johndoe</a>
|
35 |
+
<span class="mx-2">|</span>
|
36 |
+
<a href="#">johndoe/github</a>
|
37 |
+
</p>
|
38 |
+
</div>
|
39 |
</div>
|
40 |
</li>
|
41 |
+
<!-- Add more user entries for Tab 1 here -->
|
42 |
+
</ul>
|
43 |
+
</section>
|
44 |
+
<section class="tab-content">
|
45 |
+
<h2>Leaderboard</h2>
|
46 |
+
<ul>
|
47 |
+
<li>
|
48 |
+
<div>
|
49 |
+
<img src="https://via.placeholder.com/50x50" alt="User avatar">
|
50 |
+
<div>
|
51 |
+
<h3>Jane Smith</h3>
|
52 |
+
<p>
|
53 |
+
<a href="#">janesmith.com</a>
|
54 |
+
<span class="mx-2">|</span>
|
55 |
+
<a href="#">@janesmith</a>
|
56 |
+
<span class="mx-2">|</span>
|
57 |
+
<a href="#">janesmith/github</a>
|
58 |
+
</p>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
</li>
|
62 |
+
<!-- Add more user entries for Tab 2 here -->
|
63 |
+
</ul>
|
64 |
+
</section>
|
65 |
+
<section class="tab-content">
|
66 |
+
<h2>Leaderboard</h2>
|
67 |
+
<ul>
|
68 |
+
<li>
|
69 |
+
<div>
|
70 |
+
<img src="https://via.placeholder.com/50x50" alt="User avatar">
|
71 |
+
<div>
|
72 |
+
<h3>Bob Johnson</h3>
|
73 |
+
<p>
|
74 |
+
<a href="#">bobjohnson.com</a>
|
75 |
+
<span class="mx-2">|</span>
|
76 |
+
<a href="#">@bobjohnson</a>
|
77 |
+
<span class="mx-2">|</span>
|
78 |
+
<a href="#">bobjohnson/github</a>
|
79 |
+
</p>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
</li>
|
83 |
+
<!-- Add more user entries for Tab 3 here -->
|
84 |
</ul>
|
85 |
</section>
|
86 |
<section class="testimonials">
|