Exercise 4
Explanation
Cause
- Upper-case letters were used for the type attribute in the script tag:
- So, the validator says, there is no attribute "TYPE". The validator also says that the required attribute "type" is not specified.
Correction
- Use lower case letters:
<script type="text/javascript">
- Use lower case letters:
Review
