JSFiddle - React, Tailwind, and code Playground

HTML

<div id="banderole">
    <span class="heure">12:34</span>
    <span class="date">24/08/2013</span>
    <h1 class="titre">VIDEO SURVEILLANCE</H1>
</div>

CSS

#banderole {
    background: #ccc;
    height: 120px;
}

#banderole .heure {
    float: left;
}

#banderole .date {
    float:right;
}

#banderole .titre {
    text-align: center;
}