Basic Structure

Share it

Time limit: 15:00

Practice Test
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Question 1 of 20
A developer uses the following code in an HTML document:
01 <html>
02 <head>
03 <meta charset='UTF-8'>
04 <title>My Page</title>
05 </head>
06 <body>
07 <p>This is a paragraph.</p>
08 <script>console.log('Test');</script>
09 </body>
10 </html>
What will happen when the page loads?
Choose 1 answer