以下是一些常用的HTML代码:
HTML基本结构:
<!DOCTYPE html> <html> <head> <title>页面标题</title> </head> <body> <!-- 页面内容 --> </body> </html>
文本格式化:
<h1>标题1</h1> <h2>标题2</h2> <h3>标题3</h3> <h4>标题4</h4> <h5>标题5</h5> <h6>标题6</h6> <p>段落</p> <strong>加粗文本</strong> <em>斜体文本</em> <sup>上标文本</sup> <sub>下标文本</sub> <del>删除线文本</del> <ins>插入线文本</ins> <blockquote>引用文本</blockquote>
超链接:
<a href="https://www.example.com">链接文字</a> <a href="mailto:example@example.com">邮箱链接</a> <a href="tel:123456789">电话链接</a> <a href="#section-1">锚点链接</a>
图片:
<img src="image.jpg" alt="图片描述">
列表:
<ul> <li>无序列表项1</li> <li>无序列表项2</li> </ul> <ol> <li>有序列表项1</li> <li>有序列表项2</li> </ol>
表格:
<table> <tr> <th>表头1</th> <th>表头2</th> </tr> <tr> <td>单元格1</td> <td>单元格2</td> </tr> </table>
表单:
<form action="submit.php" method="post"> <label for="username">用户名:</label> <input type="text" id="username" name="username"> <label for="password">密码:</label> <input type="password" id="password" name="password"> <input type="submit" value="提交"> </form>
以上是一些常用的HTML代码,还有很多其他的标签和属性可以使用。建议学习HTML的基本语法和常用标签,以便更好地理解和使用。
猜你喜欢:
评论