Hi I have some text and a line.
I need to make the picture look like this: 
In my HTML code it looks like this:
<div class="container"> <div class="line"></div> <h2>Some Text!!!</h2> <div class="line"></div> </div> css:
.container { text-align: center; } .line { height: 5px; background: #FFEE90; } What should I write to place my text between the lines?