1
<!doctype html>
2
<head>
3
  <title> Internal Server Error - Sweet Store </title>
4
  <style>
5
    .error-box {
6
      width: 300px;
7
      margin: 50px auto;
8
    }
9
    .error-text {
10
      font-style: italic;
11
    }
12
  </style>
13
</head>
14
<body>
15
<!--em>Internal Server Error.  One of the developers will be looking at what
16
went wrong, shortly.</em-->
17
<div class="error-box">
18
  <h2> Something went wrong! </h2>
19
  <div class="error-text">
20
    <p> Seven hundred monkeys were dispatched to look into the problem.</p>
21
    <p> But you <b>DON'T PANIC!</b></p>
22
    <p> <b>KEEP CALM</b> and Try Again!</p>
23
  </div>
24
</div>
25
</body>