I can't seem to get my text centered on my landing page, despite using top: 50%; left: 50%;
in my HTML. Here's the code I have after the <body>
tag-
<div style="position: absolute; top:50%; left:50%; width:500px; height:25px"><font size="4" color="white">My Text Here</font></div>
I haven't added any additional CSS except for the Google font styles (shown below).
body {
font-family: 'Open Sans', sans-serif;
font-size: 48px;
}
This is how it appears on my website-
P.S I'm not very experienced with coding, so if I didn't explain things clearly, please let me know.
Thanks!