跳至正文

BTEC IT 20 单元 - 网站设计/HTML/徽标和标题

摘自 WikiBooks,面向开放世界的开放书籍

徽标和标题(不同行)

<html>
<head>
</head>

<body>
   <img src="logo.png" alt="logo" style="width:80px; height:80px;">
   <center> <h1> Homepage </h1> </center>
</body>
</html>

徽标和标题(同一行)

<html>
<head>
</head>

<body>
   <table>
      <tr>
         <th align="center" width="20%">
            <img src="logo.png" alt="logo" style="width:80px; height:80px;">
         </th>
         <th align="center" width="80%">
            <h1> Homepage </h1>
         </th>
      <tr>
   </table>
</body>
</html>
华夏公益教科书