在 HTML 中,屬性(attributes)為標籤提供額外的信息和設定,使標籤能夠執行更多功能。
attribute 屬性的寫法
attrubite 屬性寫在 open tag(起始標籤)內,並且由屬性名稱和屬性值組成。
常用的屬性
href 連結的網站
在 link 裡面,使用 href 可以指定要連結到哪個頁面。
<a href="https://google.com">我要去 Google</a>
src 圖片的位置
使用 src 為 image 元素找到圖片位置。
<img src="./img/image.jpg">
style 元素的樣式
使用 style 為元素指定 css 樣式。
<p style="color:blue;">我是藍色的</p>


