HTML & CSS - emlk99/emlk99.github.io GitHub Wiki
Emmanuel M.L. Knowles
Github | FreeCodeCamp | LinkedIn | E-mail
- HTML elements are written with both a start tag and end tag, with the content in between:
<tagname>content</tagname>
- The HTML element is everything from the start tag to the end tag:
<p>My first HTML paragraph.</p>
- 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.
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>