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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="item">
<div class="value">100+ million</div>
<div class="desc">monthly visitors to Stack Overflow & Stack Exchange</div>
</div>
<div class="item">
<div class="value">45.1+ billion</div>
<div class="desc">Times a developer got help since 2008</div>
</div>
<div class="item">
<div class="value">179% ROI</div>
<div class="desc">from companies using Stack Overflow for Teams</div>
</div>
<div class="item">
<div class="value">5,000+</div>
<div class="desc">Stack Overflow for Teams instances active every day</div>
</div>
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 {
font-family: 'Roboto Slab', serif;
background: #3A3F44;
color: #fff;
font-size: 11px;
}
.container {
display: flex;
flex-flow: column nowrap;
align-items: center;
}
.container .item {
margin: 16px auto;
}
.container .value {
font-family: 'Roboto Slab Bold',serif;
font-weight: 700;
font-size: 1.8rem !important;
text-align: center;
}
.container .desc {
font-size: 1.3rem !important;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run