Click photo above to see photo clearly It's Been A LOOONG Minute since I have coded!! Even so, I decided to give JavaScript another try. I always seem to do good and then when I get to this one area, I always seem to hit a brick wall. Well....nothing like getting back up and trying again right? I decided to try Rithm School's online JavaScript Fundamentals FREE course . I have never joined their school but their free courses tend to explain things in a way my brain understands it. 💁 To let you know how much I have forgotten in the coding world, I couldn't even remember how to write the basic commands for an HTML document! Yesterday I started the fundamentals free course and I am so glad that I did. Because of time, I only made it through the JavaScript History and Setup chapter, but that chapter was enough to get my memory flowing again! It started to feel familiar and I quickly remembered why I enjoyed coding so m...
ATTRIBUTES: ADDITIONAL INFORMATION ABOUT AN ELEMENT Sometimes we have HTML elements that need to have more defined information about them. Enter " Attributes ". Think of an HTML attribute like an adjective or an adverb. Adjectives and adverbs describe the noun/verb. It gives additional information. Attributes work in a very similar way. They give additional information about the element. Attributes are always specified in the start tag. Please take a look at the two photos below: (a) (b) In the first picture (a), you see the HTML code for the web site. If you look at the < h1 > tag (located under the < body > tag), you see that it is the element tag for a header. The contents in between the opening and closing < h1 > tags says "Hello World!". The picture (b) it shows how the website renders. "HELLO WORLD!" is in a large font (because it is a header) in the default text ...