Introductory Course to HTML and CSS - Part 3



Lets explore a web page. Go to www.prevajconsultants.com

You can see a lot of text and images in different sizes and shapes.

Lets look at the inner structure of the site.

As mentioned in the previous post Introductory Course to HTML and CSS - Part 2, we will use Google Chrome as our browser. It has lot of Developer tools 







  • On the top right of the browser you would see a "three-horizontal-lines" or "three vertical dots" like icon 
  • Click on the icon and select More Tools > Developer Tools



  • An additional panel will open at the bottom of the browser, which shows the inner structure of the page



  • Remember, the codes you see in the additional panel is not the actual code itself, but rather the internal structure of the page as interpreted by the browser.
  • If you mouse over the lines of code or elements in the structure, you will notice that the parts of the page get highlighted in blue rectangles.
  • if you click on the triangles that are visible to the left of the line of code, it expands. You can get deeper into the tree structure of the code
  • Also, you will find a separate panel on the right side of the additional panel which is known as "Styles". This contains information about the various styles used in the page



Popular posts from this blog

Introductory Course to HTML and CSS - Part 2

Introductory Course to HTML and CSS - Part 1