Html是一種標記語言,能夠在網頁中創建交互性與美觀的效果。
如果想要使網頁更加好看,我們需要使用一些帶有樣式的代碼。以下是一些常用的好看的Html效果。
<!-- 紅色粗體字 --> <p style="color:red;font-weight:bold;">這是紅色粗體的字</p> <!-- 藍色帶有下劃線的鏈接 --> <a href="#" style="color:blue;text-decoration:underline;">這是帶有下劃線的鏈接</a> <!-- 三列布局 --> <div style="display:flex;"> <div style="width:33%;background-color:#ccc;"><p>左邊</p></div> <div style="width:33%;background-color:#ddd;"><p>中間</p></div> <div style="width:33%;background-color:#eee;"><p>右邊</p></div> </div> <!-- 圖片居中 --> <div style="text-align:center;"> <img src="picture.jpg" style="width:50%;"> </div> <!-- 模糊背景圖片 --> <div style="background-image:url(background.jpg);filter:blur(5px);"> <p>這是一段有模糊背景圖片的文字</p> </div>
以上是一些常用的好看的Html效果,當然還有更多種類的效果,需要大家不斷的學習與嘗試。