Why is all my text hyperlinked?
Why is all my text hyperlinked? I've just started to learn HTML about a week ago and I'm creating a very basic website (just with HTML and a bit of CSS at the moment). I want the contents to link to the relevant sections of the web page below, but ALL my text is hyperlinked - including the paragraph headings and the text below it. I would truly appreciate some help here. Thanks in advance. Here's my HTML so far: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>The Rise of Democratic Populism</title> </head> <body> <h1 style="text-align:center">The Rise of Democratic Populism</h1> <hr /> <ul> <li><a href="#pop-causes">Populism & Its Causes</li> <li><a href="#east-europe">Eastern Europe</li> <li><a href="#west-europe">Western Europe</li> <li><a href="#unstam">USA</li> </ul> NOTE: Content below should NOT be hyperlinks <p> <h3 id="pop-causes">Populism & Its Causes</h3><br /> Populism is generally defined as... </p> <br /> <p> <h3 id="east-europe">Eastern Europe</h3> </p> <br /> <p> <h3 id="west-europe">Western Europe</h3> </p> <br /> <p> <h3 id="unstam">USA</h3> </p> <br /> <!-- Contact form starts here --> <div class="section"> <h3>Contact Me</h3> <form> <input name="name" type="text" /><br /> <input name="email" type="email" /><br /> <textarea name="message" ></textarea><br /> <input type="submit" value="Send" class="submit" /> </form> </div> <!-- Contact form ends here --> </body>