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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="table">
<table>
<tr>
<th>100+ million</th>
<th>45.1+ billion</th>
<th>179% ROI</th>
<th>5,000+</th>
</tr>
<tr>
<td>monthly visitors to Stack Overflow & Stack Exchange</td>
<td>Times a developer got help since 2008</td>
<td>from companies using Stack Overflow for Teams</td>
<td>Stack Overflow for Teams instances active every day</td>
<tr>
</table>
</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
body {
}
table
{
font-size: 1em;
width: ;
}
th, td
{
vertical-align: top;
}
/*th, td, table
{
border: 1px solid red;
}*/
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run