I'm feeling a bit lost when it comes to tasks like this. While I can easily design an entire website using html and css, I start to question my approach when faced with challenges like these.
Could someone offer some guidance? My goal is to have a H1 and a H3 (or H2) arranged (as depicted below) within a div that is 25% wide?
Any assistance would be greatly appreciated - thank you!
P.S. I was considering something along the lines of:
<div class="yipeee">
<h1 style="float:left; position:absolute; top:2; left:2;">This is a pretty awesome heading</h1>
<h3 style="float:right; position:absolute; bottom:2; right:2;"><i>if only it were better than this sub-heading...</i></h3>
</div>