如何在标签旁边放置h1标签?

时间:2020-05-25 03:40:28

标签: html

我需要找到一种方法来放置h1标签,使其与我的徽标对齐。

HTML代码

<html>
    <head>
        <title>
        RKS Public School
        </title>
    </head>
    <body>
        &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
        <img src=
          "logo.PNG"
          alt="logo"
          align="left:50px"
          width=120,height="120">
    </body>
<html>

1 个答案:

答案 0 :(得分:0)

我希望这是你想要的结果。

.d-inline-block {
  display: inline-block;
}
<html>

<head>
  <title>
    RKS Public School
  </title>
</head>

<body>
  &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp
  <img src="https://picsum.photos/120" alt="logo" align="left:50px" width=120, height="120">
  <h1 class="d-inline-block">Header Besides Image</h1>
</body>
<html>