I'm facing an issue where I can't seem to get two h2 elements with top margin set and placed inside divs floating left to line up properly. Any help would be appreciated.
<html>
<head></head>
<style>
h2{
margin-top:10px;
}
</style>
<body>
<div>
<div style="float:left">
<h2>Your details</h2>
</div>
<div>
<h2>Security Info</h2>
</div>
</div>
</body>
</html>