+ 5
Whatâs wrong with the following HTML markup? <p style"font-size:10px;">Copyright <span>2015</span></p>
8 Answers
+ 11
Musa Matena you forgot to add an " = " after the word "style" đ
+ 5
Missing = sign after style attribute.
Copyright is not displayed like that. The right way is ©.
It can be corrected as
=> <p style="font-size:10px;"> © A<span> 2015</span></p>
+ 2
Missing equality sign "=" after "style"
+ 2
It is supposed to be:
<p style="font-size:10px;">Copyright <span>2015</span></p>
You omitted '='
+ 2
style=
+ 1
it should be :
<p style = "font-size: 10px">
+ 1
The code is just missing a few things.
Is:
<p style"font-size:10px;">Copywright<span>2015</span></p>
Should be:
<p style = "font-size:10px;">
©
<span>2015</span>
</p>
The difference is that the style attribute is correct because it now follows attribute, value syntax.
The © is the correct way to enter a copyright Symbol
I hope this helps please let me know if I can be of any further assistance.
0
olvidaste poner el signo de = despues de style y borrar el punto y coma ; que tiene despies de px