summaryrefslogtreecommitdiff
path: root/abdul-blog/hello-world.html
blob: 0c938e6494c7cdd9a1f660ffb7d47143c7cf2c7d (about) (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

<head>
    <style>
        html {
            font-size: 16px;
            line-height: 1.6;
            color: #1E4147;
            background-color: #AAC789;
            --width: calc(100vw - 20px);
            --height: calc(100vh - 20px);
            width: var(--width);
            height: var(--height);
            border: #8A8A69 solid 10px;
            overflow-y: hidden;
        }
    
        body {
            margin: 0 auto;
            max-width: var(--width);
            max-height: var(--height);
            overflow-y: scroll;
        }

        main {
            max-width: 920px;
            padding: 1rem 2rem;
        }
    
        pre {
            background-color: #eee;
            margin: 0 -1rem;
            padding: 1rem;
            overflow-x: auto;
        }
    
        a {
            color: #AA2E00;
        }
    
        a:visited {
            color: #802200;
        }
    </style>
</head>
<body>
    <main>
<h1>Hello, World!</h1><p>I just discovered server ctftilde.koszko.org.  It seems the first public tilde server with available GNU Guix for the users.  And also it has Gemini server ^^  What an wonderful opportunity to start an blog!</p><p><a href='/~abdul/index.html'>back into blog index</a></p>
    </main>
</body>