- html:超文本标记语言,默认现行html最高版本5, html5 针对于html4的提升,
会有一些特有功能或者标签。 - head:
<head> <!--head 存放一些对页面的解释说明,或者是对页面的设定,存放一些css,js代码--> <meta charset="utf-8" /> <!--设置页面的字符编码--> <title>南大首个页面</title> <!--页面的title--> </head>
- body 代表浏览器整个窗口。
<html> <body topmargin="100px" > <!--在页面中的换行不起效果--> <h6>hello world</h6> <!--h1(标题样式) 是对标签,在此对标签中填写内容,内容会变大,加粗,并且与其他行有了行间距 1-6 6字体最小--> <br /> <!--br 单标签 作用换行--> 你好,世界 </body> </html>
- 属性:
- bgcolor属性设置背景颜色,如bgcolor="aqua"
- background属性设置背景图片,如background="img/l1.jpg"
- text 设置各种页面的字体颜色
- topmargin 设置内容和浏览器顶部的距离。
- leftmargin 设置内容和浏览器左边的距离。
- 注释:<!--快捷键 ctrl + /-->