html+css+js
前端框架自动生成操作
html:5
html:xt
html:4s
HTTP协议
什么是HTTP协议:
超文本传输协议
为何要用HTTP协议
是应用层测协议,用于浏览器与web服务端之间传输数据
如何用HTTP协议:
1、HTTP是基于TCP协议
2、HTTP协议的特点:
I:无连接
HTTP协议本身是没有连接的,但没进行一次HTTP协议的通信必先建立TCP连接,该TCP连接会在通信完毕后关闭,如果短时间内再次发起HTTP请求则必须重新建立连接,这么做的缺点是:1、对服务端造成过大的压力2、数据传输速度慢
解决方法:
Keepalive
II:无状态:
cookie(客户端)与session(服务端)
HTTP之request
GET ur1 HTTP/1.1\r\n
k1:vl\r\n
k2:v2\r\n
\r\n
请求体(只有post方法才有请求体)
请求URL:
https://www.cnblogs.com:80/linhaifeng/articles/8982675.html?a=1&b=1#anchor
请求方法:
GET
参数是存放ur1地址的?后的
参数大小有限制
不安全
POST
参数是存放请求体中的
参数大小无限制
相对安全
head 中的标签
<!DOCTYPE html>
<html lang="en">
<head>
<!--指定字符集-->
<meta charset="UTF-8"> <!--重点掌握-->
<!--页面描述-->
<meta name="Description" content="具体描述...">
<!--关键字:有助于搜索引擎SEC优化,再怎么优化也抵不过竞价排名-->
<meta name="Keywords" content="wanson,shanghai,suzhou,teacher">
<!--3秒后跳转-->
<meta http-equiv="refresh" content="3,www.baidu.com">
<!--三秒刷新-->
<meta http-equiv="refresh" content="3">
<!--标题-->
<title>wanson</title>
<!--网站的图标-->
<link rel="icon" href="https://www.baidu.com/favicon.ico">
<!--定义内部样式-->
<!-- <style>
p{
color: brown;
}
</style>-->
<!--引入外部样式文件-->
<link rel="stylesheet" href="my.css">
<!--定义JavaScript代码或者引入JavaScript文件-->
<script src="hello.js">
</script>
</head>
<body>
<p>there is no choice but grow</p>
</body>
</html>
body 中的标签
<body>
<!--加粗-->
<strong>there is no choice but grow</strong>
<br>
<!--下划线-->
<u>there is no choice but grow </u>
<br>
<!--斜体字-->
<em>there is no choice but grow </em>
<br>
<!--删除线-->
<del>there is no choice but grow</del>
<br>
</body>
空格 &mbsp:
> >;
< <;
版权 ©:
注册 ®
特殊符号对照表
http://tool.chinaz.com/Tools/HtmlChar.aspx
img用法
<img arc="图片地址" alt="图片加载失败时显示的内容" title ="鼠标县停到图片上时显示的内容"/>
posted on 2018-06-19 17:51 Indian_Mysore 阅读(95) 评论(0) 编辑 收藏 举报