Posts

Showing posts from June, 2025

Instagram login page codes

  Index.html <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <title>VibeGram Login</title>   <link rel="stylesheet" href="style.css"> </head> <body>   <div class="login-box">     <h1>VibeGram</h1>     <p>Log in to your vibe frequency ⚡</p>     <form onsubmit="handleLogin(event)">       <input type="text" id="username" placeholder="Phone number, username or email" required>       <input type="password" id="password" placeholder="Password" required>       <button type="submit">Log In</button>       <div class="extras">         <a href="#">Forgot password?</a>       </div>     </form>   </div>   <script src="script.js"></script> </body> ...