Download Top 3 codes for fun purpose

Download or Copy All codes from here:

Pseudo code

1. Code Download : Create Password Setup for Web browser| 

Please copy the following code:

--------------------------------------------------------------------------------------

<!DOCTYPE html>

<html>

<head>

<title>Create password</title>

</head>

<body>


<script type="text/javascript">

var pass = prompt("Enter the password");

if(pass == 3210){


alert("You are welcome");

}else{

while(pass != 3210){

var pass = prompt("Enter the password");

}

if (pass == 3210 ){

alert("Welcome");

}

}

</script>

</body>

</html>

belongs to Pseudo Tribe

-------------------------------------------------------------------------------------------------------
 

2. Code Download :Send automatic message in messenger very easy 2 minutes || 2022

  -----------------------------------------------------------------------------------------------------

# download pip install pyautogui in terminal then only write this program

import pyautogui import time while True:

time.sleep(2)

pyautogui.typewrite("hello brother")

time.sleep(2)

pyautogui.typewrite("happy birthday")

time.sleep(2)

pyautogui.typewrite("thankyou")

pyautogui.press('enter')


------------------------------------------------------------------------------------------------

3.create Facebook login interface with html+css with ese



 Create Facebook login interface with Html + CSS very easy:

pseudo tribe


As we already know that many people want to learn HTML for web development any for many other use. we have made this website just for you so that yo you can learn ,any coding skills regarding subjects. in this page we have provided you the detail and tutorial for the Facebook login interface for web development or the other regarding purpose. If you want the code for it directly then copy the following code to your compiler to begin you tasks.

---------------------------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
    <title>Facebook interface for phishing attack part 1</title>
    <style type="text/css">
        fieldset{
            background-color:#F8F8FF;
            box-shadow:0px 0px 6px silver;
            width:530px;
        }
        button{
            border-radius:6px;
            padding:0 16px;
            width:395px;
            height:48px;
        }
        a{
            text-decoration:none;
            color:#1877f2;
            font-size:20px;
            font-family:sans-serif;
        }
        #me{
            font-size:17px;
            padding:14px 16px;
            width:355px;

        }

    </style>
</head>
<body>
    <center>
    <fieldset>
        <center><h1 style="font-family:sans-serif;" ><big>Log in</big></h1></center>
        <center><input type="text" name="text" placeholder="Username" id="me"></center>
        <br>
        <center><input type="password" name="password" placeholder="password" id="me"></center>
        <br>
        <center><button style="background-color:#1877f2; color:white; font-size: 20px;">Log in</button></center>
        <br>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <input type="checkbox" name="checkbox">&nbsp;<span style="font-family:sans-serif;">Remember me</span>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <a href="as your whish put whater link you want for linking">Forgot Password?</a>
    </fieldset>
    </center>
    <br>
    <center><a href="what ever you want">Create an account</a></center>

</body>
</html>

Post a Comment

Previous Post Next Post