html基本模块

来源:互联网 发布:淘宝格子铺怎么入驻 编辑:程序博客网 时间:2024/04/30 19:37
<!DOCTYPE html>
<html lang="en">
<head>

    <title>网页名称</title>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <script type="text/javascript">

    </script>


    <style type="text/css">
        div{
            width:700px;
            height:30px;
        }
    </style>
</head>

<body>

    <h1></h1>

    <div></div>
</body>
</html>
0 0