基础知识
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试</title>
<!-- 内嵌式 -->
<style>
article {
color: blue;
font-size: 50px;
}
</style>
<!-- <link href="textYangsi.css" type="text/css" rel="stylesheet"> -->
<link href="textYangsi.css" rel="stylesheet">
</head>
<body>
<!-- 行内式 -->
<p style="color: green; font-size: 20px;">样例1</p>
<!-- 内嵌式 -->
<article>字体样式</article>
<!-- 链入式 -->
<nav>外链式</nav>
</body>
</html>
外链式 CSS部分
nav {
color: purple;
font-size: 18px;
}