Home > Web Front-end > HTML Tutorial > Review summary of the first week of ChinaSoft training - simple HTML and CSS

Review summary of the first week of ChinaSoft training - simple HTML and CSS

WBOY
Release: 2016-09-05 08:45:33
Original
1384 people have browsed it

一些需要记住的点:

day1 HTML格式及简单标签:

  html 文件一般格式:

1 <html>
2     <head lang="en">
3         <meta charset="utf-8">
4         <title>页面名称</title>
5     </head>
6     <body>
7 <span>        页面内容
8     </body>
9 </html></span>
Copy after login

  charset 设置字符编码,避免页面中文内容出现乱码。

  没有闭标签 需要在末尾打斜杠“/”,alt属性不行的时候可以用title属性代替,align 属性可以设置一个段落内图片居左还是居右,还有width和height属性设置照片大小

  

    有序列表