BTEC IT Unit 20 - Website Design/HTML/Logo & Title

Logo & Title (different lines)

<html>
<head>
</head>

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

Logo & Title (same line)

<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>