<h1>{
font-weight:normal;
color:red;
}
h1不需要这个<> ,正确的写法是
h1{
font-weight:normal;
color:red;
}
并且要把这个语句写在 <style type="text/css"> </style>这对标签里面
选择器不带<>
h1{
font-weight:normal;
color:red;
}
h1{
font-weight:normal;
color:red;
}
去掉h1的<>,直接写h1{font-weight:normal;
color:red;
}
选择符不用带括号
h1{
font-weight:normal;
color:red;
}
选择器写错了,正确写的方式应该是h1{font-weight:normal;color:red;}这种属于标签选择器。
h1不要<>括号