<audio controls>

  <source src="audio.mp3" type="audio/mpeg">

首页 科普 正文

html代码大全及详解

科普 编辑:淩薇 日期:2024-05-15 11:15:39 222人浏览

```html

HTML代码大全

HTML代码大全

使用以下标签创建基本页面结构:

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF8">

  <meta name="viewport" content="width=devicewidth, initialscale=1.0">

  <title>页面</title>

</head>

<body>

  页面内容

</body>

</html>

使用以下标签创建和段落:

<h1>主</h1>

<h2>副</h2>

<p>这是一个段落。</p>

使用以下标签创建链接:

<a href="url">链接文本</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>

使用以下标签插入音频和视频:

<audio controls>

  <source src="audio.mp3" type="audio/mpeg">

</audio>

<video controls width="400">

  <source src="video.mp4" type="video/mp4">

</video>

使用以下标签创建表单:

<form action="/submitform">

  <input type="text" name="username" placeholder="用户名">

  <input type="password" name="password" placeholder="密码">

  <input type="submit" value="提交">

</form>

```

分享到

文章已关闭评论!