Home > Article > Web Front-end > Detailed explanation of html tags (1)
1.Basic tags
<!DOCTYPE html> <!--表示文本类型--> <html> <!--<html></html>表示创建一个html文档--> <head> <!--<head></head>设置文档标题和其它在网页中不显示的信息--> <title>标题</title> <!--<title></title>设置文档的标题,就是最上方的名字--> </head> <body> <!--<body></body>设置文档的内容--> <p>原创作者:雨点的名字</p> </body> </html>
The effect is as follows:
<!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"> 我是预编译, 我怎么输它就怎么显示