<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1 {
border-bottom: 1px solid red;
}
span {
border-bottom: 1px solid blue;
display: inline-block;
margin-bottom: -1px;
}
</style>
</head>
<body>
<h1>
<span>My Title Test</span>
</h1>
</body>
</html>