9 lines
245 B
CSS
9 lines
245 B
CSS
|
/* 外联样式表 */
|
||
|
html {
|
||
|
/* background-color: aqua; */ /* 背景颜色 */
|
||
|
background-image: url(/images/head_w1.png); /* 背景图片 */
|
||
|
color: blue; /* 字体颜色 */
|
||
|
font-size: 16px;
|
||
|
font-family: "宋体", "黑体", "楷体";
|
||
|
}
|