Question from the HTML5/CSS3 test

What is the difference between HTML5 and HTML4?

Archived

Here is a valid HTML5 code :

<!DOCTYPE html>
<html>
    <body>
        <video src="path/to/video.ogv">
            Loading ... 
        </video>
 
        <form target="_blank" method="post">
            <label>
                Your email address :
                <input type="email" name="email" placeholder="[email protected]" required>
            </label>
            <button type="submit">Subscribe to the newsletter</button>
        </form>
    </body>
</html>

Some features can be emulated in HTML4 (and less) via polyfills. Which of the following statements are true ?

Author: Jean-marie CléryStatus: ArchivedQuestion passed 1199 times
0
Community EvaluationsNo one has reviewed this question yet, be the first!