Inspecting HTML with Dev Tools Flashcards

1
Q

What are Google Chrome Developer Tools?

A

Google Chrome Developer Tools are built into Chrome and allow you to debug and inspect HTML, CSS, and JavaScript code.

This allows you to develop your own pages and to see how other sites implement features that you find interesting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What’s a good starting resource page on Mozilla for Developer tools?

A

https://developer.mozilla.org/en-US/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What’s a good resource for all the different kinds of HTML elements on the MDS?

A

https: //developer.mozilla.org/en-US/docs/Web/HTML/Element

tinyurl. com/htmlmozelementlist

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to get to Dev Tools in: CHROME

A

Path: 3 dots, More Tools, Developer Tools

Shortcut: Right click on web page>Inspect

Shortcut: Ctrl+Shift+ “i”

Also can use Ctrl+U but gives less info that opens in a separate window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to get to Dev Tools in: EDGE

A

Path: 3 dots, Tools, F12 Developer tools

Shortcut: F12 or Fn+F12

Shortcut: Ctrl + U

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to Get to Dev Tools in Firefox:

A

Path: 3 stacked lines, Web Developer, Inspector

Shortcut: Control+Shift+C

Also can use Ctrl+U but gives less info that opens in a separate window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Mozilla’s Developer Tools Console - What to know

A

This developer console is totally different in layout than the other browsers.
Path: 3 stacked lines, Web Developer

Once there you will see many options, The one most likely used will be Inspector but it is expansive.in its options.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Inspecting Individual Elements on a Webpage- The Easy Way

A

On the webpage, place your curse on the element you’d like to inspect, right click, choose INSPECT.

The DevTools console will open but it will be pinpointed precisely to the code for that particular element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Can I add elements to a webpage from the DevTools window?

A

YES

Right click the Element on the DevTools window and choose “Edit Element” or”Add
Element”
The changes made should be immediately visible on the webpage in real time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Can I delete an element from a webpage via the DevTools window?

A

YES

Right click the element on the DevTools window and choose “Delete Element”
The changes made should be immediately visible on the webpage in real time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Can I edit a webpage’s code from the DevTools window?

A

YES

Right click the Element on the DevTools window and choose “Edit Element”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly