将 HTML 页面设置为固定分辨率

Setting an HTML page to a fixed resolution

我在 1920x1080 流上显示 HTML 叠加层。 我正在尝试创建一个简单的 HTML 页面,该页面有一个显示在顶部的居中图像,但每当我显示它时,它都位于右下角的某个位置。 这是我的代码,如果可以的话,我宁愿不使用 CSS 我错过了什么?

<!DOCTYPE html>
<html lang="en">
<head>
</head>

<body>
  <center>
<img src="https://s10.gifyu.com/images/once-30-sec-5-min-99.gif" alt="Computer man" style="width:400px;height:100px;padding-bottom: 350;padding-right: 200px">
  </center>

<script>
</script>

</body>
</html>

我认为您不能仅使用 HTML 来创建固定分辨率 但您可以将样式放在具有最大高度的 HTML 图像标签中,而不是将其链接到 CSS 页面

<!DOCTYPE html>
<html lang="en">
  <head>
   <meta charset="UTF-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial- scale=1.0">
   <title>Document</title>
  </head>
   
  <body>
     <img href="address of image" style="width=100%; height:100%"> 
  </body>
</html>