BTEC IT 20 单元 - 网站设计/HTML/徽标和标题
外观
徽标和标题(不同行)
<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>