html所有标签大全?html下载链接代码怎么写
大家好,关于html所有标签大全很多朋友都还不太明白,今天小编就来为大家分享关于html下载链接代码怎么写的知识,希望对各位有所帮助!
html5基础标签有哪些
<article>定义页面独立的内容区域。
<aside>定义页面的侧边栏内容。
<bdi>允许您设置一段文本,使其脱离其父元素的文本方向设置。
<command>定义命令按钮,比如单选按钮、复选框或按钮
<details>用于描述文档或文档某个部分的细节
<dialog>定义对话框,比如提示框
<summary>标签包含 details元素的标题
<figure>规定独立的流内容(图像、图表、照片、代码等等)。
<figcaption>定义<figure>元素的标题
<footer>定义 section或 document的页脚。
<header>定义了文档的头部区域
<mark>定义带有记号的文本。
请写出至少20个html标签,并说说各个标签的功能或作用。
Basic tags基本标签
<html></html> Creates an HTML document创建一个HTML文档
<head></head> Sets off the title and other
information that isn't displayed
on the Web page itself设置文档标题以及其他不在WEB网页上显示的信息
<body></body> Sets off the visible portion of
the document设置文档的可见部分
Header tags
标题标签
<title></title> Puts the name of the document
in the title bar将文档的题目放在标题栏中
Body attributes
文档整体属性
<body bgcolor=?> Sets the background color,
using name or hex value设置背景颜色,使用名字或十六进制值
<body text=?> Sets the text color, using
name or hex value设置文本文字颜色,使用名字或十六进制值
<body link=?> Sets the color of links,
using name or hex value设置链接颜色,使用名字或十六进制值
<body vlink=?> Sets the color of followed
links, using name or hex value设置已使用的链接的颜色,使用名字或十六进制值
<body alink=?> Sets the color of links on click设置正在被击中的链接的颜色,使用名字或十六进制值
Text tags
文本标签
<pre></pre> Creates preformatted text创建预格式化文本
<h1></h1> Creates the largest headline创建最大的标题
<h6></h6> Creates the smallest headline创建最小的标题
<b></b> Creates bold text创建黑体字
<i></i> Creates italic text创建斜体字
<tt></tt> Creates teletype, or
typewriter-style text创建打字机风格的字体
<cite></cite> Creates a citation, usually
italic创建一个引用,通常是斜体
<em></em> Emphasizes a word(with italic
or bold)加重一个单词(通常是斜体加黑体)
<strong></strong> Emphasizes a word(with italic
or bold)加重一个单词(通常是斜体加黑体)
<font size=?></font> Sets size of font, from 1 to 7设置字体大小,从 1到 7
<font color=?></font> Sets font color, using name or
hex value设置字体的颜色,使用名字或十六进制值
..........
看参考资料吧很全
html常用标签有哪些
html常用标签
最近,对html的重温,对一些常用的html标签进行了整理,给大家分享一下。
html结构:
<html> html开始标签
<head>
<title>html文档标题</title>
</head>
<body>
html文档内容....
</body>
</html> html结束标签
html常用标签:
表格:
<table>表格开始标签
<tr>行
<td></td>列
</tr>
</table>表格结束标签
表格属性:<table width="" height="" border="" bgcolor="" background="" cellpadding="' cellspacing="">其中: width:为表格的宽度,height:表格的高度,border:表格的边框,
bgcolor表格的背景颜色,background表格背景颜色。cellpadding:表格字间距, cellspacing:表格边框间距。
双标签:
<b></b>字体加粗
<i></i>斜体
<u></u>字体下划线
<s></s>删除线
<strike></strike>删除线
单标签:
<br/>换行
<hr/>水平线
空格:
向右双箭头:»
注册商标符:®
版权符号:©
双引号:"
链接
<a rel="external nofollow" href="#" title="">链接文本/图片</a>
注:#换成所要链接的文件相对地址。title:为链接提示信息。
图片链接:
<img src="" alt="" width="" hegiht="">
src:图片链接相对地址,alt:图片信息, width:图片宽度,height:图片高度。
表单:
表单开始标签:<form name="表单名称" method="post/get" action="提交地址">
文本框:<input type="text" name="名称" value="值"/>
密码框:<input type="password" name="名称" value="值"/>
单选按钮:<input type="radio" name="名称" checked/>
复选框:<input type="checkbox" name="名称" checked/>
列表:
<select>
<option value="值"></option>
</select>
文本区域:<textarea cols="文本的宽度" rows="文本行数"></textarea>
提交按钮:<input type="submit" name="名称" value="值"/>
重置按钮<input type="reset" name="名称" value="值"/>
表单结束标签:</form>
文章到此结束,如果本次分享的html所有标签大全和html下载链接代码怎么写的问题解决了您的问题,那么我们由衷的感到高兴!