Complete the code to open the developer tools in most browsers using a keyboard shortcut.
Press [1] + Shift + I to open developer tools.Most browsers open developer tools with Ctrl + Shift + I (Cmd + Option + I on Mac).
Complete the code to select the tab in developer tools that shows the HTML structure of the page.
Click the [1] tab to view and edit the HTML elements.
The Elements tab shows the HTML structure and lets you inspect or edit elements.
Fix the error in the statement about the Console tab in developer tools.
The Console tab is used to [1] errors and run JavaScript commands.
The Console tab logs errors and allows running JavaScript commands interactively.
Fill both blanks to create a CSS rule in the Styles tab that changes text color to blue.
p { color: [1]; [2] }The color property sets text color. Adding font-size changes text size.
Fill all three blanks to write a JavaScript command in the Console tab that logs 'Hello World'.
console.[1]('[2] [3]');
console.log() prints messages to the Console. The message is 'Hello World'.