After adding text to the body
of my HTML
page, I noticed that it appears directly at the top. What I am trying to achieve is to have the text displayed 20px below the page. How can I accomplish this?
I attempted to use padding, but it applies padding to all four sides. Here is my code snippet:
..
<body >
Hello World
</body >
...
In the example above, the text Hello World
shows up right at the top. However, I would like it to be positioned around 20px
lower on the page.
If anyone could assist me with this issue, I would greatly appreciate it.