在網頁設計中,CSS是常用的樣式表語言。它可以控制網頁的布局、字體、顏色等樣式。下面介紹幾個常用的CSS標簽:
<style> body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } a { color: blue; text-decoration: none; } </style>
1. body標簽:用于設置網頁的背景顏色、圖片等屬性。常用屬性有background-color、background-image、background-repeat等。
2. h1-h6標簽:用于設置網頁的標題文字樣式。常用屬性有color、text-align、font-size等。
3. p標簽:用于設置網頁的正文文字樣式。常用屬性有font-family、font-size、line-height等。
4. a標簽:用于設置網頁中的鏈接文本樣式。常用屬性有color、text-decoration等。
<body> <h1>Welcome to my website</h1> <p>This is the paragraph text of my website. You can use the p tag to format the text here.</p> <a href="#">Click here to go to other page</a> </body>
以上是幾個常用的CSS標簽,它們可以配合其他CSS屬性一起使用,為網頁設計帶來更多變化和效果。在編寫CSS代碼時,可以使用pre標簽將代碼格式化顯示,方便閱讀和編輯。