美文网首页
HTML5(week1)

HTML5(week1)

作者: tgtiger | 来源:发表于2016-04-08 23:45 被阅读0次

1、背景

  • http(HyperText Transfer Protocol) :
    data communication for the web

  • html(HyperText Markup Language):
    main mark-up language for creating Web pages and information that can be displayed on Web browser

  • url(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、五个特殊字符
&amp ;和&
&lt ;小于<
&gt ;大于>
& nbsp ; 多空格输出
&quot ;引号"
8、属性(鼠标放上去会显示注释)

  • <abbr title="Hypertext Markup Language "5"">HTML5</abbr>
    第一个5显示不出来
  • <abbr title="Hypertext Markup Language &quot ;5&quot ;">HTML5</abbr>
    将引号换为&quot ;5就可以显示出来

相关文章

网友评论

      本文标题:HTML5(week1)

      本文链接:https://www.haomeiwen.com/subject/niyvlttx.html