<!DOCTYPE html>
<html>
<head>
<style>
.floating-box {
display: inline-block;
width: 150px;
height: 75px;
margin: 10px;
border: 3px solid #73AD21;
}
h2 {
text-align: center;
}
</style>
</head>
<body>
<div class="floating-box">Floating box</div>
<h2 >Floating box</h2>
</body>
</html>
Guys, I have this and I want to align the text with the box horizontally, how can I do that?