Skip to content
Snippets Groups Projects
Select Git revision
  • 5e652a3a799b59337497a53f384e1180b7582988
  • main default
  • tp2
  • tp1
  • tp3
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

server.py

Blame
  • Forked from an inaccessible project.
    index.html 1.02 KiB
    <!DOCTYPE html>
    <html>
    <title>Happy Botday !</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
    <style>
        body,
        h1 {
            font-family: "Raleway", sans-serif
        }
    
        body,
        html {
            height: 100%
        }
    
        .bgimg {
            background-image: url('/background.jpg');
            min-height: 100%;
            background-position: center;
            background-size: cover;
        }
    </style>
    
    <body>
    
        <div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
            <div class="w3-display-middle">
                <h1 class="w3-jumbo w3-animate-top">HAPPY BOTDAY!</h1>
                <hr class="w3-border-grey" style="margin:auto;width:40%">
                <p class="w3-large w3-center">Go to <a href="https://t.me/happyCSbot">t.me/happyCSbot</a> for configuration.
                </p>
            </div>
        </div>
    
    </body>
    
    </html>