图片,音频,视频标签
标签 | 描述 |
---|
| 定义图片 |
| 定义音频 |
| 定义视频 |
定义图片:
src
:规定显示图片的URL
(统一资源定位符)height
:定义图像的高度 单位:px
像素点 或百分点width
:定义图像的宽度
定义音频:支持的音频格式:MP3,WAV,OGG
src
:规定音频的URL
controls
:显示播放控件
定义视频:支持的音频格式:MP4,WEBM,OGG
src
:规定视频的URL
controls
:显示播放控件
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
head>
<body>
<img src="aa(1).png" width="299",height="88">
<audio src="录音.mp3" controls = "controls">
audio>
` <video src="ea639c26955526de853bf886b66fafcf.mp4" controls = controls width="250" height="207">video>
body>
html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
超链接标签
本节学习资源
href
:指定访问资源的URL
target
:指定打开资源的方式。
_self
: 默认值,在当前页面打开_blank
: 在空白页打开
学习资源
<a href="https://www.itcast.cn" target="_self">点我有惊喜a>
列表标签
标签 | 描述 |
---|
order list | 定义有序列表 |
unorder list | 定义无序列表 |
| 定义列表项 |
type
: 设置项目符号 不建议使用,后续使用css
表格标签
标签 | 描述 |
---|
- 定义表格:
border : 规定表格边框的宽度width : 规定表格的宽度cellspacing :规定单元格之间的空白 - 定义行:
- 定义单元格:
rowspan : 规定单元格可横跨的行数colspan : 规定单元格可横跨的列数。
<table border="1" cellspacing="0" width="100%">
<tr>
<th>序号th>
<th>品牌logoth>
<th>品牌名称th>
<th>企业名称th>
tr>
<tr align="center">
<td>010td>
<td><img src="../resource/三只松鼠.png" height="50",width="60">td>
<td>三只松鼠td>
<td>三只松鼠td>
tr>
<tr>
<td>009td>
<td><img src="../resource/优衣库.jpg" height="50",width="60">td>
<td>优衣库td>
<td>优衣库td>
tr> <tr>
<td>008td>
<td><img src="../resource/小米.jpg" height="50",width="60">td>
<td>小米td>
<td>小米科技有限公司td>
tr>
table>
<br>
<hr>
<br>
<table border="1" cellspacing="0" width="100%">
<tr>
<th colspan="2">品牌logoth>
<th>品牌名称th>
<th>企业名称th>
tr>
<tr align="center">
<td>010td>
<td><img src="../resource/三只松鼠.png" height="50",width="60">td>
<td>三只松鼠td>
<td>三只松鼠td>
tr>
<tr>
<td rowspan="2">009td>
<td><img src="../resource/优衣库.jpg" height="50",width="60">td>
<td>优衣库td>
<td>优衣库td>
tr> <tr>
<td>008td>
<td><img src="../resource/小米.jpg" height="50",width="60">td>
<td>小米td>
tr>
table>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
布局标签
标签 | 描述 |
---|
| 定义HTML文档中的一个区域部分,经常与CS`S一起使用,用来布局页面 |
| 用于组合行内元素。 |
相关阅读:
Dutree:Linux 文件系统磁盘使用追踪工具
MediaCodec同步异步使用
汽车安全的未来:毫米波雷达在碰撞避免系统中的角色
Python函数式编程(三)操作符函数(operator)
Codeforces Round 954 (Div. 3)
windows下msquic客户端认证服务器的自签名证书客户端不添加-unsecure保证加密通信
手机apn介绍
Python 实验二上篇基础系列
spdlog 封装为 DLL
数据库系统概论 --- 期末单元集
原文地址:https://blog.csdn.net/2301_80286359/article/details/136571842
|