Dashboard Temp Share Shortlinks Frames API

HTMLify

web_page_for_group_entry
Views: 505 | 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
 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
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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-color: whitesmoke;
        font-family: 'Courier New', Courier, monospace;
        margin: 0;
        padding: 0;

    }
    h1{
        background-color: rgb(152, 251, 152);
        font-size: 40px;
        text-align: center;
        color: orangered;
        border-style: inset;
        border-radius: 4px;
        margin: 20px;
        padding: 5px;

    }
    .first{
        color: tomato;
    }
    section{
        /* float: left; */
        /* right: 50%; */
        background-color: aliceblue;
        text-align: inherit;
       border-style: inset;
       border-radius: 4px;
       margin: 8px;
       padding: 8px;
       max-width: 800px;
    }
    .input{
        border-style: inset;
        border-radius: 4px;
        margin: 4px;
        padding: 4px;
        

    }
    button{
       
        border-style: inset;
        border-radius: 4px;
        margin: 4px;
        padding: 2px 24px 2px 24px ;
        float: right;
    }
    button:hover{
        background-color: rgba(152, 251, 152, 0.632);}
         footer{
            text-align: center;
            padding: 10px;
            font-size: 14px;
    }
    .submit{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

    }

    footer{
        text-align: center;
        /* text-size-adjust: 140px; */
         margin: 40px;
        padding: 40px;
      
    }
    </style>
</head>
<body>
    <header>
        <h1  >
            <span class="first">
                //
            </span>
            <span>
                \/\/ /\ \_/
            </span>
            <span>
            //
            </span>
        </h1>


    </header>

    <main>
         <section>
            <h2>
                What anime is your favourite anime character ?
            </h2>
            <input type="text" class="input" >
         </section>
         <section>
            <h2>
                Why is he/she your favourite character?
            </h2>
            <input type="text" class="input">
         </section>
         <section>
            <h2>
                what book did you read this year?
            </h2>
            <input type="text"class="input" >
         </section>
         <button>
            <h2>
                <a href="https://htmlify.artizote.com/light/submit_button_not_working.html" class="submit">submit</a>
            </h2>
         </button>

    </main>
    <footer>
        @This is not created by AI! trust me bro!
    </footer>
</body>
</html>