自己写html的“初始化”结构代码

写页面的时候写的代码,基本每个页面都用到这个头部,保存下来方便以后复制粘贴

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta content="zhangxingju.com" name="Copyright">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta name="author" content="www.zhangxingju.com  阿举"/>
    <title>阿举个人网站</title>
    <meta name="description" content="阿举个人网站"/>
    <meta name="keywords" content="阿举个人网站"/>
    <link rel="icon" href="/favicon.ico" type="image/x-icon"/>
    <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
</head>
<body>

</body>
</html>