如何将文本保留在 html 中的 x,y 坐标中?

How to keep text in an x,y coordinate in html?

我想通过 HTML 在我的网站页面上的 x,y 坐标 window 中放置文本,我该怎么做?这是我到目前为止的代码:

<!DOCTYPE html>
     <html>
           <head>
                  <center><h1>Hello</h1></center>
           </head>
     </html>

目前,代码将在 window 的中心显示“Hello”,但我希望它位于 (100,100)。

使用position:fixedtop:100pxleft:100px

<!DOCTYPE html>
<html>

<head>
  <style>
    h1 {
      position: fixed;
      top: 100px;
      left: 100px;
    }
  </style>
</head>
  <body>
    <h1>Hello</h1>
  </body>

</html>