html
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
<html>
<head>
<title>John Doe's Profile</title>
</head>
<body>
<ul id="profile">
<img src="https://blob.sololearn.com/courses/ava.png">
<h2>John Doe</h2>
<p>🇺🇸USA</p>
<li>25 Followers</li>
<li>20 Following</li>
<li>⭐️1581 XP</li>
</ul>
<div id="streak">Streak
<ul>
<li class="active-day">M</li>
<li class="active-day">T</li>
<li class="active-day">W</li>
<li class="inactive-day">T</li>
<li class="inactive-day">F</li>
<li class="inactive-day">S</li>
<li class="inactive-day">S</li>
</ul>
<p>Current Streak: 3</p>
<p>Longest Streak: 16</p>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
body{
background-color: DarkSlateGrey;
text-align:center;
color: white;
font-family:Arial, sans-serif;
}
#profile {
text-align:center;
color: #FFF;
}
.active-day{
color: #00CC00;
animation-name:pulse;
animation-duration:2s;
animation-iteration-count:infinite;
}
@keyframes pulse{
0% {transform:scale(1);
color: #fff;}
50% {transform:scale(1.2);
color: #00CC00;}
100%{transform:scale(1);
color: #fff;}
}
.inactive-day{
color: #CCCCCC;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run