CSS (Cascading Style Sheets) 用于渲染HTML元素标签的样式.
1. 内部样式
使用内部样式在 <head>中 对HTML 进行格式化
<style type="text/css">
h1 {color: red;}
p {color: #b3d4fc;}
</style>
如歌标题或者段落未进行自定义设置,该代码会使得此页面中所有的1级标题变为红色,所有的段落文字颜色变为#b3d4fc颜色
2. 外部样式
- 创建css文件
- 使用<link>
<link rel="stylesheet" type="text/css" href="outSideStyle.css">
其中href表示css文件名