/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
<!DOCTYPE html>
<html>
  <head>
    <title>Prison Break</title>

  </head>
  <body>
    <h1>Part 1</h1>
    <p>You have been found guilty of a crime you did not commit. You plan to escape</p>
    <a href="wrong.html">Beat up the gaurd and run</a><br>
    <a href="part2.html">Comply with the gaurd and walk to your cell peacefully</a>

  </body>
</html>
