随笔记录方便自己和同路人查阅。
#------------------------------------------------我是可耻的分割线-------------------------------------------
编码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> </head>
该部分指定了html的编码格式为utf-8
Title文件名,指的时html在浏览器中显示的名字
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>博客园</title> </head>
结果展示:
刷新和跳转
刷新<meta http-equiv="Refresh" content='3'>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Refresh" content='3'> <title>博客园</title> </head>
结果展示:3秒自动刷新页面
跳转:在content中加入url会自动跳转该指定网址
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Refresh" content='3;Rrl=http://www.baidu.com' > <title>博客园</title> </head>
兼容IE
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Refresh" content='3;Rrl=http://www.baidu.com' > <meta http-equiv="X-UA-Compatible" content="IE=IE9;IE=IE8;IE=IE7"> <title>博客园</title> </head>
指定网页图标link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!--<meta http-equiv="Refresh" content='3;Rrl=http://www.baidu.com' >--> <meta http-equiv="X-UA-Compatible" content="IE=IE9;IE=IE8;IE=IE7"> <title>博客园</title> <link rel="shortcut icon" href="1.jfif"> </head>
结果展示: