HTML5代碼大全
HTML5是前端開發必備的技術,提供了許多新的語義化標簽和功能。以下是一些常用的HTML5標簽和代碼示例:
文本標簽
文本標簽用于控制文本的樣式和排版:
<p>段落標簽</p> <h1>到<h6>標題標簽</h1></h6> <em>斜體標簽</em> <strong>粗體標簽</strong> <small>小字標簽</small> <sup>上標標簽</sup> <sub>下標標簽</sub>
鏈接和圖像標簽
鏈接和圖像標簽用于添加鏈接和圖像:
<a href="https://www.baidu.com">百度</a> <img src="image.jpg" alt="描述">
表格標簽
表格標簽用于創建表格:
<table> <tr> <th>標題1</th> <th>標題2</th> </tr> <tr> <td>行1列1</td> <td>行1列2</td> </tr> </table>
表單標簽
表單標簽用于收集用戶輸入的數據:
<form action="submit.php" method="post"> <label>用戶名</label> <input type="text" name="username"> <br> <label>密碼</label> <input type="password" name="password"> <br> <input type="submit" value="提交"> </form>
上一篇旋轉相冊的css
下一篇旋轉太極圖css樣式