CSS 外部引入
link
必须写在head
标签中
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
JS 外部引入
script
需要写在bady
标签中
<body>
<h1>hello word</h1>
<script src="index.js">
</script>
</body>