当前位置:主页 > html > html模板

html模板

xi4年前 (2020-10-08)html2400

仅作记录

<!-- 文档类型声明位于文档中的最前面-->
<!DOCTYPE html>
<!--lang代表该网页所属国家地区-->
<html lang="en">

<!--头部标签,定义文档的一些属性-->

<head>
  <!--meta定义与文档相关联的名称/值对-->
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!--定义文档的唯一标题-->
  <title>Test</title>
  <!--给页面标题添加图标-->
  <link rel="icon" type="image/x-icon" href=".test.png">
  <!--外联样式,链接外部样式表-->
  <link rel="stylesheet" type="text/css" href="./test.css" />
  <!--嵌套样式写法-->
  <style>
    .div-class {
      color: #fff;
    }
  </style>
</head>

<!--定义文档主体-->

<body>

  <!--内联样式写法-->
  <div id="divId" class="div-class" style="height: 100px;width: 100px;background-color: #000;"></div>

  <!--引入外部js文件-->
  <script type="text/javascript" src="./test.js"></script>

  <!--直接在html中编写js-->
  <script>
    console.log("test!")
  </script>
</body>

</html>
转载请标注来源与原作者

本文链接:https://xiblogs.top/?id=7

返回列表

没有更早的文章了...

没有最新的文章了...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。