1. Balises de base
<!DOCTYPE html> <!--表示文本类型--> <html> <!--<html></html>表示创建一个html文档--> <head> <!--<head></head>设置文档标题和其它在网页中不显示的信息--> <title>标题</title> <!--<title></title>设置文档的标题,就是最上方的名字--> </head> <body> <!--<body></body>设置文档的内容--> <p>原创作者:雨点的名字</p> </body> </html>
L'effet est le suivant :
Remarque : Dans la balise , l'attribut src est couramment utilisé pour représenter la source et le nom de l'image ; placé sur l'image ; l'attribut alt est utilisé pour définir la description de l'image lorsque le graphique ne peut pas être affiché normalement ; les attributs width et height sont utilisés pour définir la largeur de l'image. L'effet Hegao . est la suivante :<!DOCTYPE html> <head> <title>来吧</title> </head> <body> <!--这是一个注释标签,页面上你看不到--> <h4>我是标题哦</h4> <hr/> <p>我是p标签<b>我自动加粗的</b></p><br/> <s>我是删除线</s> <u>我是下划线</u><br/> <pre class="brush:php;toolbar:false"> 我是预编译, 我怎么输它就怎么显示