文本标签(不熟悉的)
superscript 上标
subscript 下标
horizontal rules <hr>
line-break <br>
abbreviation 缩进
<abbr title=“proferdisoa”>
</abbr> title用来指示完整单词
citation <cite></cite>
definition <dfn></dfn> 行业术语定义
Strikethrough <s></s> 不准确或不相关的内容
<dl><dl/> 定义列表 <dt>被定义的术语</dt> <dd>包含定义</dd>
<a href=""></a>
url 是否指定域名
相对url
一个正斜杠 整个网站的主页
图片格式选择
jpeg:图片包含多种颜色
gif/png:图片含有少量颜色或者大面积同色区域,可透明
gif:创建简单动画 100%透明
png: 透明部分包含斜线,圆边,半透明
矢量图:在不影响图片像素质量的前提下放大图片大小
svg:可伸缩矢量图形
table部分
scope:将表头单元与数据单元相关联的方法
<th scope="col">我是列的开头</th>
form部分
表单结构
<form action="" method="" id="" >
<p>please choose a room to study</p>
<input type="radio" name="classroom"
value="1001">1001
<input type="radio" name="classroom" value="1002">
1002
<input type="radio" name="classroom" value="1003" checked>
1003
</form>
/*action:服务器上一个页面用来接收表单中的信息
*method:默认为get方式
*id: 唯一性标识*/
*单选按钮name值应该保持一致,name与用户所选的值一同发送到服务器
文件上传域:注意
如果允许用户自己上传文件,将method特性值设置为post
组合表单元素
<fieldset>
<legend>detail</legend>
<label for="email">email:<br>
<input type="text" name="email">
<br>
</label>
<label for="username">username:<br>
<input type="text" name="username">
</label>
</fieldset>
<legend>用于在起始标签<fieldset>处添加一个标题,帮助用户理解控件组用途
其他标记
1、 内嵌框架 <iframe></iframe>
属性 | html4 | html5 |
---|---|---|
scrolling | ✅ | ❌ |
frameborder | ✅ | ❌ |
seamless | 旧浏览器❌ | 新浏览器✅ |
seamless:应用在不需要滚动条的地方
2、 <meta>标签
description 不多于155个字符 有时显示在搜索引擎结果中
keywords 包含一组以逗号分割的关键词列表
robots 指定页面是否将页面加入到搜索引擎结果中 noindex
加入搜索引擎,但是不收录页面上链接的其他页面 nofollow
http-equiv&content特性
<meta http-equiv="author" content="jack">
<meta http-equiv="progma" content="no-cache">
<meta http-equiv="expires" content="Fri,04 Apr 2020, 22:33:33 GMT">
/*
*pragma 防止缓存
*expires 设置过期时间
*/
3、一些转义字符
Flash工作原理
为什么flash的使用越来越少?
使用局限性:
1、在网页中使用需要转化为swf格式
2、flash开发环境需要购买,
3、不是总符合符合无障碍的要求???
flash在创建动画方面表现的较为出色,但是JavaScript库推出了prototype,jquery等,能更轻松的创建动画;
html5推出了<vedio> <audio>标签
html5
<video></video> 参数:
<video poster="puppy.jpg"
width="500px"
height="300px"
preload
controls
loop
codecs="vp8 vorbis" ><video>
补充
value和name 的作用?
value代表的是标签的内容,name是标签的名字,作为标签的标识与服务器进行通信;在向服务器发送请求时,将内容和name一同发送给服务器;
书中原版解释
The name of each form control is sent to the
server along with the value the user enters or selects.
遗留问题:a链接如何帮助 使用屏幕阅读软件的用户?