Dashboard Temp Share Shortlinks Frames API

HTMLify

Zoro
Views: 422 | 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Coding World</title>
    <style>
        body{
            background-color:#1e1e1e;
            color: #ffffff;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;

        }
        header{
            text-align: center;
            padding:20px ;

        }
        h1{
            font-size: 32px;
              }
        .bracket{
            color: #f92672;
        }        
        .coding{ 
            color: #a6e22e;

        }
        .world{
            color: #66d9ef;

        }
         section{
            background-color:#2d2d2d ;
            margin: 20px auto;
            padding: 20px ;
            max-width: 800px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
         }
         h2{
            font-size: 24px;
            color:#66d9ef ;
         }
         .join-button {
            display: inline-block;
            background-color: #25D366;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;

         }
         .join-button:hover {
            background-color: #128C7E;
         }
         #rules li::before{
            content: " //";
            color:#75715e ;

         }

    .join-buttons    {
        display: inline-block;
            background-color: #25D366;
            color: #ffffff;
            margin-top:10px;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
    }
    .join-buttons:hover {
        background-color: #128C7E;}
         footer{
            text-align: center;
            padding: 10px;
            font-size: 14px;
         }

    </style>
</head>
<body>
    <header>
        <h1>
            <span class="bracket">
                {

            </span>
            <span class="coding">
                Coding

            </span>
            <span class="world">
                World
            </span>
            <span class="bracket">
            }
            </span>
        </h1>
    </header>
    <main>
       
        <section id="intro">
            <h2>
                Welcome to coding world 
            </h2>
            <p>
                Coding world is a community for coding enthusiasts to share knowledge, ask questions, and collaborate on projects, Whether you are a beginner or an experienced developer, you will find a place here to learn and grow .
            </p>

        </section>
        <section id="rules">
            <h2>
                Rules
            </h2>
            <ul>
                <li>
                    No Spam
                </li>
                <li>
                    No DM/PM without permission
                </li>
                <li>
                    No religious or political conversations
                </li>
                <li>
                    No abuse or disrespectful language
                </li>
                <li>
                    Relevant discussions only 
                </li>
                <li>
                    No piracy or illegal content
                </li>
                <li>
                    Respect everyone's privacy
                </li>
                
            </ul>
        </section>
        <section id="join-button">
            <h2>
                Join the group
            </h2>
            <p>
                Click the button below to join the Coding World WhatsApp group:
            </p>
            <a href="https://chat.whatsapp.com/CoPfYfqaF4Y4wRFX2skXx2" class="join-button">Join Now</a>
            <p>
                Click the button below to join the Coding World telegram: 
            </p>
            <a href="https://t.me/codewithtanvir" class="join-button"> Join Now</a>
            <p>
                Click the button below to join the Coding World discord:
            </p>
            <a href="https://discord.gg/hSM4Gcf8" class="join-button"> Join Now</a>
        </section>
        <section>
            <h2>
                Notes
            </h2>
            Click the button below to download notes:
            <a href="https://books.goalkicker.com/" class="join-buttons"> Download</a>
        </section>

    </main>
    <footer>
        © 2025 Coding World. All rights reserved.
    </footer>
</body>
</html>