Hey there, I have a question that I couldn't seem to find an answer to. If it's already been addressed, my apologies.
I'm using paragraph tags to frame the title of my website:
<div class = "title">
<p>Welcome to homepage!</p>
</div>
<div class = "subtext">
<p> Subtext goes here </p>
</div>
<div class = "formthing">
<form method = "GET" action = "/form">
<input type = "submit" name = "submitted" class = "btn-large" value = "Click button" />
</form>
</div>
Everything is functioning correctly except for one issue - when I zoom in on the page, the words in the title overlap each other. Is there a CSS solution to prevent this from happening?