Advertisement
AmazinTyler

Code Academy Test

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