HTML & CSS - emlk99/emlk99.github.io GitHub Wiki

Contact Me

Emmanuel M.L. Knowles

Github | FreeCodeCamp | LinkedIn | E-mail

Say Hello to HTML Elements

  1. HTML elements are written with both a start tag and end tag, with the content in between: <tagname>content</tagname>
  2. The HTML element is everything from the start tag to the end tag: <p>My first HTML paragraph.</p>
  3. Opening tags look like this: <h1>. Closing tags look like this: </h1> Note that the only difference between opening tags and closing tags is that closing tags have a slash after their opening angle bracket.

Headline with the h2 Element

Create different levels of Heading elements by using h1, h2, h3, h4, h5, h6 which will result in different sizes.

  • <h1>Hello World</h1>
  • <h2>CatPhotoApp</h2>
⚠️ **GitHub.com Fallback** ⚠️