标签:设置 bsp icon image html5 通过 cut har shortcut
HTML
一个个具有不同样式的标签组合成的一大堆字符串,由浏览器解析就形成了我们看到的网页
基础HTML代码
<!DOCTYPE html> <!--告诉浏览器这是一个HTML,通过html5 解析下方代码--> <html lang="en"> <!--html标签,一个页面只有一对,指定语言--> <head> <!--指定当前页面的字符集编码--> <meta charset="UTF-8"> <!--每1秒钟刷新一下--> <meta http-equiv="refresh" content="1"> <!--1秒后跳转到www.baidu.com--> <meta http-equiv="refresh" content="1;http://www.baidu.com"> <!--关键字检索,网络爬虫就根据这个keywords--> <meta name="keywords" content="besttest"> <!--网站描述--> <meta name="description" content="这是内容"> <!--ie打开时以最高兼容模式打开--> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--浏览器tag上的名字--> <title>我的tag</title> <!--设置tag上的小图标--> <link rel="shortcut icon" href="http://ui.imdsx.cn/static/image/dsx_Small.jpg"> <!--引入css样式表--> <link rel="stylesheet" href="xxx.css"> <!--在这标签内可以写css的一些样式--> <style></style> <!--引入js或编写js--> <script src="tmp.js"></script> </head> <body> </body> </html>
HTML标签
自闭合标签 如<br>这种不成对出现的
主动标签标签 如<p></p>这样需要成对出现的
标签:设置 bsp icon image html5 通过 cut har shortcut
原文地址:https://www.cnblogs.com/yanyan-/p/11072735.html