Menu
×
×
正确
<!DOCTYPE html>
<html> <head> <style> .intro {background:pink;} .special {color:red;} </style> </head> <body> <h1 @(21)>My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .intro {background:pink;} .special {color:red;} </style> </head> <body> <h1 class="intro special">My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .intro {background:pink;} .special {color:red;} </style> </head> <body> <h1 class='intro special'>My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .intro {background:pink;} .special {color:red;} </style> </head> <body> <h1 class="special intro">My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html>
<head>
<style>
.intro {background:pink;}
.special {color:red;}
</style>
</head>
<body>
<h1 class='special intro'>My Home Page</h1>
</body>
</html>
不正确
点击 此处 重试 正确
下一题 ❯w3exercise_input_no_0 |