!+tab键弹出文章的结构
<!DOCTYPE html>
<html lang="en"> -----网页的开始
<head> ----网页的头部
<meta charset="UTF-8">
<title>标题</title> ----网页的标题
</head> ---头部结束
<body> -----网页内容
</body>
</html> -----网页结束
加粗-------b/strong
斜体-------i/em
下划线------u
删除线------del
水平分割线-----hr 包含属性:长短---width 粗细---size 例:<hr width=“1000” size=“20”>
换行标签-----br
上标------sup 下标-----sub
段落标签-----p 分段直接顶格
原样的文本想要输出的方式----pre
行内标签,修饰文本-----span
font-----字体 color-----颜色 例:红色字体表示方法:<font color=“red”>
h1~6分别表示标题从大到小
align----属性 center---中 left----左 right---右 例:将标题右放的表示方法为<h1 align=“right”
查找文件的路径:for
1.绝对路径:从盘符开始查找,直到找到文件为止,路径+文件名
例:
2相对路径:当前文件和目标文件的相对路径
例:. .\目标文件名
语法结构 <form action=“ ” name=“ ” method=“ ”>
action----跳转的路径 name----表单的名字 method---跳转的请求方式 包含post和get请求
默认为get请求 get不安全 post有些安全
用户名:<input type=“text” name=“username”>
密码:<input type=“password” name=“password”>
<input type=“submit” > 提交键