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>