I used navigation bar and set it at top right corner using this-
nav{
position: absolute;
top: 8px;
right: 16px;
font-size: 22px;
}
after that I just want to set the h3 tag at the right of the given image shown in above screenshot. please help me and thanks in advance!!
display: inline;
should work for you if you apply it to both the <img>
and <h3>
elements you’re talking about.
Thankyou so much geek!!!