1、div可以写在body区域;
<body>
<divclass=;ceshi;>测试内容</div>
</body>
2、css可以写在<title></title>下的某一区域;
<styletype=;text/css;><!--XXXXX--></style>
3、或者写入外部文件;然后引用进来;引用方式
<linkrel=;stylesheet;href=;d: estcssase.css;type=;text/css;/>引用详细解释;href=;xx;,xx指的是你的css文件所在的路径。
rel=;stylesheet;和type=;text/css;不用变;rel用来定义外部文件和htmL文档之间的关系;type用来说明外部文件的类型。
css 加粗使用css属性单词font-weight;copy
例子;
.yangshi1{ font-weight:bold}
.yangshi2{ font-weight:600}
font-weight对象值;从100到900;最常用font-weight的值为bold
font-weight参数;
normal : 正常的字体。
相当于number为400。
声明此值将取消之前任何设置
bold : 粗体。
相当于number为700。
也相当于b对象的作用
bolder : ie5; 特粗体
lighter : ie5; 细体
number : ie5; 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
来源;微点阅读 https://www.weidianyuedu.com