I’m encountering an issue with text positioning when using the custom font “Angel Wish.” Even without applying any CSS, the text is positioned below the page. When I switch to a standard font like Arial, the problem does not occur. I’ve also tried adding an image with just HTML and CSS, but the issue persists.
Issues Encountered
Even without CSS, the text is positioned below the page.
The problem disappears when switching to standard fonts like Arial.
I have also tried adding an image with just HTML and CSS, but the issue persists.
Steps Taken
Verified that the “Angel Wish” font is being loaded correctly.
Tested with standard fonts, and the issue does not occur.
Used browser developer tools to check applied styles.
Added an image using only HTML and CSS, but the issue is still present.
Request
How can I resolve the text positioning issue with the “Angel Wish” font? Any suggestions?
p {
font-family: 'Angel Wish', sans-serif;
display: block;
font-size: 40px;
}
<link href="https://fonts.cdnfonts.com/css/angel-wish" rel="stylesheet">
You need to scroll down:
<p>test</p>
7