Reputation: 337
I can't find out what the problem is with this line of code:
<h4><span class="orange">mytitle</span></h4>
This is the error message I receive:
document type does not allow element "h4" here;
What do I need to change? Cheers Mic
Upvotes: 0
Views: 1225
Reputation: 2998
<h4>
(like all headers) is a block level element. You've probably put it directly inside something that doesn't allow it, like <table>
or <tr>
or an inline element (<span>
, <a>
).
Upvotes: 1