1、背景
http(HyperText Transfer Protocol) :
data communication for the webhtml(HyperText Markup Language):
main mark-up language for creating Web pages and information that can be displayed on Web browserurl(universal resource locator):
to reference a web page
2、笔记
title head ... 均为element
1、强调< em>
2、注释
3、> <head>
...
<title>home page</title>
...
</head>
4、图片链接< a href="http://tgtiger.vicp.cc">
<img src="images/w3c.png"width="72" height="48"
alt="tg's web site">
<\a>
5、版本标记<!doctype html>
3、小例子
<!doctype html>
<html>
<head>
<title>how to build a web page</title>
</head><body><h1>how to build web page</h1><p>"hello world!!"<\p></body></html>`
6、meta
<head>
<meta charset="UTF-8">
</head>
7、五个特殊字符
& ;和&
< ;小于<
> ;大于>
& nbsp ; 多空格输出
" ;引号"
8、属性(鼠标放上去会显示注释)
- <abbr title="Hypertext Markup Language "5"">HTML5</abbr>
第一个5显示不出来 - <abbr title="Hypertext Markup Language " ;5" ;">HTML5</abbr>
将引号换为" ;5就可以显示出来