DEV Community

Simon Toledano
Simon Toledano

Posted on

Slowing Down to Enjoy the Journey - TIL Day 3

I decided to pump the breaks today and went back to review some basics around HTML.

Here are some of my key learnings from today:

  • The <!DOCTYPE html declaration should be the first line within a HTML
  • Info related to the web page like the title should be within the <head> on the particular page
  • Anchor tags a are helpful when trying to link an internal page, external page, and content within the same page
  • id can be added to a to create sections and be able to jump to each of them.
  • Be mindful of indentation when writing code so it is easier to read code and understand relationships between elements.

Top comments (0)