Can't understand why text within <p> shows bold

Hi guys. I can’t understand why the text within the fourth paragraph (the last one) appears in all browsers I tried as bold text, meanwhile others paragraphs is normal text. Help me please.

<!DOCTYPE html>
<html>
 <head>
  <title>My trip around USA on a Segway</title>
 </head>
 <body>
  <h1>Segway'n USA</h1>
  <p>
     Documenting my trip around US on my very own Segway!
  </p>

  <h2>August 20, 2012</h2>
  <img src="images/segway2.jpg">
  <p>
     Well I made it 1200 miles already, and I passed through some interesting places on the way:
	 Walla Walla, WA, Magic City, ID, Bountiful, UT, Last Chance, CO, Why, AZ and Truth or Consequences, NM.
  </p>

  <h2>July 14, 2012</h2>
  <p>
     I saw some Burma Shave style signs on the side of the road today:"Passing cars, When you can't see,May get you,
     A glimpse, Of eternity." I definitily won't be passing any cars.
  </p>

  <h2>June 2, 2012<h2>
  <img src="images/segway1.jpg">
   <p>   
     My first of the trip! I can't believe I finally got everything packed and ready to go. Because I'm on a Segway,
	 I wasn't able to bring a whole lot with me: cell phone, iPod, digital camera, and protein bar. Just the essetials.
     As Lao Tzu would have said, "A journey of a thousand miles begins with one Segway."
  </p>	 
  
</body>
</html>

You forgot to close off you h2 before that paragraph so it is wrapping the text in an h2.

<h2>June 2, 2012<h2>

<!--Should be-->
<h2>June 2, 2012</h2>

1 Like

Hi
add / to the last h2 tag.

1 Like

Thanks to everybody for responses. I wasn’t attentive (learning from 0).

It’s because you didn’t close h2 tag. You have to close h2 tag for that you have to add /

June 2, 2012

1 Like

You forgot to close off your h2 before that paragraph

At this line <h2>June 2, 2012<h2>

Close this <h2>