summaryrefslogtreecommitdiffstats
path: root/dist/index.html
blob: d644cace96f250f675b58c55d799e9109ffe3b66 (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Volpeon's den</title>
    <link rel="stylesheet" href="./style.css" />
    <style>
        @font-face {
            font-family: "Iosevka Term SS09";
            font-style: normal;
            font-weight: normal;
            src: url("./iosevka-term-ss09-regular.woff2") format("woff2");
        }

        @font-face {
            font-family: "Iosevka Term SS09";
            font-style: normal;
            font-weight: bold;
            src: url("./iosevka-term-ss09-bold.woff2") format("woff2");
        }
    </style>
</head>

<body>
    <main>
        <header>
            <!--
                ' |      '     '             '     '            '   | |    |           '     '
                  |      '     '             '     ' //\_       '   | ' .  |           '     '
                 .|      '     '____,...,______..,_~``  -`..,   '   |    ' |           '     '
                  |      '_,~´"'  ,               .    ,~--´    '  _|  | . |~~.__      '     '
                | |    ,-"    _.-|~/  |..,____,) ,/,,"'         '_( | '    |)    )     '     '
                 '|    \__,~"´   /:) /       |:\ \            ,~(    ) . | |  )   `,   '   _.._
                ___\___.___:____(:/\_-,______\:.\_-,____.__\_.\______.__:___\__.___)_.___,/____
                ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
            -->
            <pre>
' |      '     '             '     '            '   | |    |           '     '  
  |      '     '             '     ' <strong>//\_</strong>       '   | ' .  |           '     '  
 .|      '     '<strong>____,...,______..,_~``  -`..,</strong>   '   |    ' |           '     '  
  |      '<strong>_,~´"'  ,               .    ,~--´</strong>    '  _|  | . |~~.__      '     '  
| |    <strong>,-"    _.-|~/  |..,____,) ,/,,"'</strong>         '_( | '    |)    )     '     '  
 '|    <strong>\__,~"´   /:) /       |:\ \</strong>            ,~(    ) . | |  )   `,   '   _,--.
   \   . ' :    <strong>(:/\_-,      \:.\_-,</strong>    .  \ .\      .  :   \  .   ) . ' ,/     </pre>
        </header>

        <h1>Volpeon's den</h1>

        <p>
            Welcome to my website! I'm Volpeon and here's an <a href="#">inline link</a>.
        </p>

        <blockquote>
            Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
            dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet
            clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
        </blockquote>

        <p>
            Welcome to my website! I'm Volpeon and here's an <a href="#">inline link</a>.
        </p>

        <h2>Subtitle</h2>

        <h3>Last one</h3>

        <ul>
            <li>Item 1</li>
            <li>Another item</li>
        </ul>

        <ol>
            <li>Item 1</li>
            <li>Another item</li>
        </ol>

        <ul class="refs">
            <li><a href="#">Item 1</a></li>
            <li><a href="#">Another item</a></li>
        </ul>
    </main>
</body>

</html>