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 color - black. Now what i
My Journey To Learning Web Development