笔记
html : 超文本标记语言
F12:开发者模式
css: 层叠样式表
javascript(js): 脚本语言,增加动态效果
开发环境:WebStorm
开发手册: w3school
H5的标准:<!DOCTYPE html>
<meta> :网页的信息
charset字符集(UTF-8,gb18030,gb2312) 默认utf-8
<link > : 链接资源
网页代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试</title>
</head>
<br>
<h1>
xxxx
</h1>
<h2>
qqqq
</h2>
<p>
Hello World!\n
</p>
<a href="http://www.baidu.com">
this is a link
</a>
</br>
<img src="image/west.png" height="500" width="500">
<h1 align="center">
标题2,居中
</h1>
<table border="3">
</table>
<body bgcolor="#ffebcdblu">
<h1 align="center">hhhhhhhh</h1>
</body>
</html>