Introduction To HTML

Today I bought the pro version on codecademy, codecademy pro lets me do projects, and choose any career path I might want to follow and lets me try a coach. I can choose from four different paths: "Web Development,  Data Science, Computer Science, and Code Foundations." I chose "Web Development" because that one has the javascript which is what I was learning before I got the pro version. It shows in this picture the different options. "The Brown Bear" text is what I put in is what I did on codecademy in HTML, you don't see any code but that is because I was able to embed the code into this blog post. Here is the actual code:

<body>
  <h1>The Brown Bear</h1>
  <div id="introduction">
    <h2>About Brown Bears</h2>
    <p>The brown bear (<em>Ursus arctos</em>) is native to parts of northern Eurasia and North America. Its conservation status is currently <strong>Least Concern</strong>. There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.</p>
    <h3>Species</h3>
    <h3>Features</h3>
    <p>Brown bears are not always completely brown. Some can be reddish or yellowish. They have very large, curved claws and huge paws. Male brown bears are often 30% larger than female brown bears. They can range from 5 feet to 9 feet from head to toe.</p>
  </div>
  <div id="habitat">
    <h2>Habitat</h2>
    <h3>Countries with Large Brown Bear Populations</h3>
    <h3>Countries with Small Brown Bear Populations</h3>
    <p>Some countries with smaller brown bear populations include Armenia, Belarus, Bulgaria, China, Finland, France, Greece, India, Japan, Nepal, Poland, Romania, Slovenia, Turkmenistan, and Uzbekistan.</p>
  </div>
  <div id="media">
    <h2>Media</h2>
  </div>
 </body>                                   

The "<H1>" means to put the text to Header size to 1. and when it says "</h1>" that means to stop making the text header 1. "<H2>" is basically the same thing as "<h1>" but that the size is header 2. and when I wrote "<p>" that means to just do normal text like the text I am writing In. And "<em>" means to make the text it is wrapped in to change the type to italic. Whenever you see like a / in a "<h1>" or a "<em>" in a HTML code then that means that, that code is done. The "<strong>" code means to make text that it is wrapping to change size to Bold. Here is what the code outputs:

The Brown Bear

About Brown Bears

The brown bear (Ursus arctos) is native to parts of northern Eurasia and North America. Its conservation status is currently Least Concern. There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.

Species

Features

Brown bears are not always completely brown. Some can be reddish or yellowish. They have very large, curved claws and huge paws. Male brown bears are often 30% larger than female brown bears. They can range from 5 feet to 9 feet from head to toe.

Habitat

Countries with Large Brown Bear Populations

Countries with Small Brown Bear Populations

Some countries with smaller brown bear populations include Armenia, Belarus, Bulgaria, China, Finland, France, Greece, India, Japan, Nepal, Poland, Romania, Slovenia, Turkmenistan, and Uzbekistan.

Media