主頁
HTML
HTML 屬性
Tryit:寬度和高度屬性
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
轉到 Spaces
<!DOCTYPE html> <html> <body> <h2>Width and Height Attributes</h2> <p>The width and height attributes of the img tag, defines the width and height of the image:</p> <img src="img_girl.jpg" width="500" height="600"> </body> </html>