Dashboard Temp Share Shortlinks Frames API

HTMLify

joke
Views: 455 | Author: light
 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        
        body {
            /* background-image: url(https://c4.wallpaperflare.com/wallpaper/619/622/511/blue-archive-shiroko-blue-archive-anime-girls-hd-wallpaper-preview.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;*/
            color: rgb(0, 162, 255); 
            text-align: center;
           
            margin: 0;
        }

      a{
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff80;
            color: rgb(219, 100, 44);
            text-decoration: none;
            font-size: 1.4em;
            border-radius: 5px;
            
            cursor: pointer;
        }

      
    </style>
</head>
<body>
    <h1>I have to build something!</h1>
    <p>NO! CHOICE!</p>

    <main>
        <h2>ORDER</h2>
        <p> build something</p>
        <h3>YES!</h3>

        <a href="https://tenor.com/hAbw5mlyDNf.gif" >Here, check out</a>
    </main>
</body>
</html>