- 1
What code is correct? a)<bg>=yellow. b)<body bgcolor=yellow>
6 ответов
+ 21
b
+ 8
Well B works but actual way is:
<body bgcolor="yellow">
<!-- content -->
</body>
Even better :
<style>
body {
background-color : yellow;
}
</style>
+ 6
No, he/she(Valentin) is also right. That also works.
0
Yes
- 1
Cyrus,you are justice!
- 1
Valentin, you're wrong