To end this part, let's introduce two more useful tags, the <em> and the <strong> elements. This are what we call inline elements, and normallly you will find theme inside a <p> tag.
Just remember that 99% of the times, our style is given through a CSS document, but is nice to know that this tag exists. And sometimes it's just faster to format directly in html.
Don't miss part two.
Hope you find it useful! let me know in the comments!
(2/3) There are a few general rules for naming variables:
▪️Variable names cannot start with numbers.
▪️Variable names are case sensitive, so myName and myname would be different variables.
▪️It is bad practice to create two variables that have the same name using different cases.
▪️Variable names cannot be the same as keywords. For a comprehensive list of keywords check out MDN’s keyword documentation.