गुरुर्ब्रह्मा गुरुर्विष्णु गुरुर्देवो महेश्वरा गुरुर्साक्षात परब्रह्म तस्मै श्री गुरवे नमः !
<!doctype html>
<html>
<head>
<title>HTML Demo</title>
</head>
<body>
<h1>
Welcome to Tom's home page
</h1>
<hr>
<p>
1.
Question 1
What are the building blocks of HTML called?
1 / 1 point
Nodes
Elements
Attributes
Chunks
Correct
Correct. Elements are the building blocks of HTML.
2.
Question 2
Which tag is used to provide keywords for search engines?
1 / 1 point
<footer>
<meta>
<header>
<title>
Correct
Correct. The <meta> tag stands for metadata, and provides keywords for search engines
3.
Question 3
Fill in the blank: In HTML5, ______________ allow you to run processing intensive tasks without blocking the user interface.
0 / 1 point
DOM accessors
Non-blocking feeds
Web workers
Structural elements
Incorrect
Incorrect. Structural elements help you logically define the page structure
4.
Question 4
How do you properly recreate the following table using HTML code?
Date
Language
2014
HTML5
1999
CSS3
1995
JavaScript
1 / 1 point
<table> <tr> <th>Date</th> <th>Language</th> </tr> <tr> <td>2014</td> <td>HTML5</td> </tr> <tr> <td>1999</td> <td>CSS3</td> </tr> <tr> <td>1995</td> <td>JavaScript</td> </tr> </table>
<table> <tr> <td>Date</td> <td>Language</td> </tr> <tr> <th>2014</th> <th>HTML5</th> </tr> <tr> <th>1999</th> <th>CSS3</th> </tr> <tr> <th>1995</th> <th>JavaScript</th> </tr> </table>
<table> <tc> <th>Date</th> <th>Language</th> </tc> <tc> <td>2014</td> <td>HTML5</td> </tc> <tc> <td>1999</td> <td>CSS3</td> </tc> <tc> <td>1995</td> <td>JavaScript</td> </tc> </table>
<table> <td> <th>Date</th> <th>Language</th> </td> <td> <tr>2014</tr> <tr>HTML5</tr> </td> <td> <tr>1999</tr> <tr>CSS3</tr> </td> <td> <tr>1995</tr> <tr>JavaScript</tr> </td> </table>
Correct
Correct. Running this code will produce the expected result.
5.
Question 5
Which of the following statements about document.images is correct?
1 / 1 point
document.images is a DOM property
document.images returns a collection of image elements in a document
document.images is part of the HTML document API
All of the above
Correct
Correct. All the options listed are true.
</p>
<div>
I know a little bit of html, css and javascript.<br>
Check out the javascript I have written by clicking the button below.
</div><br>
<button onclick="gettime()">
Show location
</button>
<hr>
<footer>
© 2020 tom@abcd.com
</footer>
</body>
</html>