【HTML】a标签,src标签,table标签使用

admin 2022年1月10日03:31:17评论5 views字数 1905阅读6分21秒阅读模式

标签使用截图样式

image-20210707151958897

标签使用代码及注释

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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"> <!--字符集 -->
<title>a标签,src标签,table标签使用</title>
</head>
<body>
<!--a 标签的使用 -->
<!--a 标签的使用 target中 _self代表不新建标签、_blank新建页面跳转-->
<a href="https://gylq.github.io/" target="_self">孤桜懒契的博客</a><br/>
<a href="https://gylq.github.io/" target="_blank">孤桜懒契的博客</a>

<!--img标签的使用 alt当图片不存在描述图片-->
<img src="1.jpg" alt="qq图片">

<!--表格tr代表一行,th单元格数据加粗 ,td一个单元格的数据,borden边框,cellpadding单元格大小,单元格间距cellspacing,colspan行单元格拼接,竖单元格拼接rowspan-->
<table border="1" cellpadding="10" cellspacing="2">
<tr><th>#</th><th>名字</th><th>年龄</th></tr>
<tr><td>1</td><td>刘备</td><td>11</td></tr>
<tr><td>2</td><td>张飞</td><td>22</td></tr>
<tr><td>3</td><td>关羽</td><td>33</td></tr>
<tr><td>总数</td><td colspan="2">3人</td></tr>
</table>
<table border="1" cellpadding="10" cellspacing="2">
<tr><th>#</th><th>名字</th><th>年龄</th></tr>
<tr><td>1</td><td>刘备</td><td>11</td></tr>
<tr><td>2</td><td>张飞</td><td>22</td></tr>
<tr><td>3</td><td>关羽</td><td rowspan="2">33</td></tr>
<tr><td>4</td><td>小羽</td></tr>
</table>

<!--a 标签的使用 top返回最上面-->
<a name="top"></a>
<p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>https://gylq.github.io/</p><p>
<a href="#top">返回头部</a>
</body>
</html>

我的个人博客

孤桜懶契:http://gylq.github.io

FROM:gylq.gitee Author:孤桜懶契

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2022年1月10日03:31:17
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   【HTML】a标签,src标签,table标签使用https://cn-sec.com/archives/729955.html

发表评论

匿名网友 填写信息