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 htmldeclaration 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
aare helpful when trying to link an internal page, external page, and content within the same page -
idcan be added toato 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)