Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.09 KB | None | 0 0
  1. !DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <title>Brown Bears</title>
  6. </head>
  7.  
  8. <body>
  9.   <nav>
  10.     <a href="./index.html">Brown Bear</a>
  11.     <a href="./aboutme.html">About Me</a>
  12.   </nav>
  13.   <h1>The Brown Bear</h1>
  14.   <nav>
  15.     <ul>
  16.       <li><a href="#introduction">Introduction</a></li>
  17.       <li><a href="#habitat">Habitat</a></li>
  18.       <li><a href="#media">Media</a></li>
  19.     </ul>
  20.   </nav>
  21.   <div id="introduction">
  22.     <h2>About Brown Bears</h2>
  23.     <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>.<br /><br /> There are many subspecies within the brown bear species, including the
  24.       Atlas bear and the Himalayan brown bear.</p>
  25.     <a href="https://en.wikipedia.org/wiki/Brown_bear" target="_blank">Learn More</a>
  26.     <h3>Species</h3>
  27.     <ul>
  28.       <li>Arctos</li>
  29.       <li>Collarus</li>
  30.       <li>Horribilis</li>
  31.       <li>Nelsoni (extinct)</li>
  32.     </ul>
  33.     <h3>Features</h3>
  34.     <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>
  35.   </div>
  36.   <div id="habitat">
  37.     <h2>Habitat</h2>
  38.     <h3>Countries with Large Brown Bear Populations</h3>
  39.     <ol>
  40.       <li>Russia</li>
  41.       <li>United States</li>
  42.       <li>Canada</li>
  43.     </ol>
  44.     <h3>Countries with Small Brown Bear Populations</h3>
  45.     <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>
  46.   </div>
  47.   <div id="media">
  48.     <h2>Media</h2>
  49.     <img src="https://s3.amazonaws.com/codecademy-content/courses/web-101/web101-image_brownbear.jpg" />
  50.     <video src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-1/lesson-2/htmlcss1-vid_brown-bear.mp4" height="240" width="320" controls>Video not supported</video>
  51.   </div>
  52. </body>
  53.  
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement