<!DOCTYPE html> <html> <head> <!-- meta标签用来设置网页中的元数据,它里面的内容不被用户查看, 一般用来告诉浏览器如何解析网页,或者告诉搜索引擎网页的主要内容 可选属性: name: 要设置的属性的名字 content: 要设置属性的内容 --> <!-- description用于告诉搜索引擎网页的主要内容 --> <meta name="Description" content="css+html"/> <!-- keywords用来指定网站的关键字,多个关键字使用逗号隔开 --> <meta name="Keywords" content="css,html,java"/> <!-- 这个标签用来设置请求的重定向 --> <meta http-equiv="refresh" content="3,url=https://www.baidu.com"/> <!-- charset字符集,一般默认是utf-8 --> <meta charset="utf-8"> <title></title> </head> <body> </body> </html>