Newbie to HTML and CSS here!
I'm attempting to achieve a design similar to this: https://i.sstatic.net/HyiP3.jpg
Below is my code snippet:
<div id="topbar">
<div class="image">
<img src="images/ghwlogo.png">
</div>
<div class="text">
<h1>TEXT TEXT TEXT TEXT TEXT</h1>
</div>
</div>
I've experimented with floating the topbar div and setting it to display inline, but couldn't get it to appear side by side horizontally.
I am feeling overwhelmed. While following tutorials is straightforward, problem-solving on my own seems like a whole different challenge.
I believe I may have missed a crucial step somewhere. This task appears simple in theory, yet proves quite tricky in practice.