Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
.test {
display: inline-block;
margin: 20px;
width: 300px;
height: 150px;
box-sizing: border-box;
border: 30px solid blue;
font: bold 60px/90px monospace;
color: blue;
}
.rounded {
border-radius: 20px;
}
</style>
</head>
<body>
<div class="test">Text</div>
<div class="test rounded">Text</div>
</body>
</html>