summaryrefslogtreecommitdiff
path: root/Base/www/other.html
blob: cd9dbbda1bc819cd19db80ea8cfca723f6a79c8e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Serenity WebServer Other Page!</title>
    <style>
      body {
        font-size: 16px;
        line-height: 1.6;
        background: #ababab;
      }

      main {
        background: #ffffff;
        width: 500px;
        border: 1px solid #000000;
        padding: 10px;
        margin: 0 auto;
      }

      header {
        text-align: center;
      }

      .banner {
        background: #ababab;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 5px 0;
      }

      .banner.it-works {
        background: #ab6e4aff;
      }

      section {
        margin: 5px 0;
      }
    </style>
  </head>

  <body>
    <main>
      <header>
        <img src="ladyball.png" />
        <h1>Serenity WebServer Other Page!</h1>
      </header>
      <p class="banner it-works">It works!</p>
      <hr />
      <section>
        <p class="banner">Holy moly!</p>
        <p>This is not even index.html, how neat is that! :^)</p>
        <p>Maybe you want to go <a href="index.html">back to index.html</a>?</p>
      </section>
    </main>
  </body>
</html>