慧眼看世界 - 一个值得收藏的网站
<!DOCTYPE html>:声明文档类型为HTML5。
<html lang="en">:HTML文lang属性
<head>:
<meta charset="UTF-8"><元字符集=“UTF-8”>
<meta name="viewport" content="width=device-width, initial-scale=1.0">:设置视
<meta name="description" content="网页描述"><meta name="description" content="网页描述">
<meta name="keywords" content="关键词1, 关键词2, 关键词3">:定义网页
<meta name="author" content="作者姓名">:
<meta name="robots" content="index, follow">:
<meta name="theme-color" content="#0078d4">:定义移动设备浏览器工具栏和任务栏的主题颜色。
<title>网页标题</title> <标题>
<link rel="icon" href="favicon.ico" type="image/x-icon">:指定网站
<link rel="stylesheet" href="样式表.css">:链接到外部CSS样式表文件。
<script src="脚本.js"></script>:链接到外部JavaScript文件。
<!DOCTYPE html> <html lang="en"> en语言 <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="网页描述"> <meta name="keywords" content="关键词1, 关键词2, 关键词3"> <meta name="author" content="作者姓名"> <meta name="robots" content="index, follow"> <meta name="theme-color" content="#0078d4"> <title>网页标题</title> <link rel="icon" href="favicon.ico" type="image/x-icon"> <link rel="stylesheet" href="样式表.css"> <script src="脚本.js"></script> </head> <body> <!-- 网页内容部分 --> </body> </html>
本文链接:https://www.sxlog.com/post/1656.html