summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview_example/src/main/assets/error.html
blob: 4534e9d2223b02937c0099140afad831dd4b8cf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
  <head>
    <title>Boom!</title>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width,initial-scale=1,user-scalable=no"
    />
    <style>
      body {
        background-color: red;
        color: white;
        font-family: sans;
      }

      div.container {
        width: 75%;
        margin: auto;
        text-align: center;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <h1>Boom!</h1>
      <p>Something bad happened...</p>
      <p>$ERROR</p>
    </div>
  </body>
</html>