Posts

Showing posts from July, 2022

TAGLINE

Image
 

personal branding

Image
 

portfolio cover

Image
 

guessing game

Image
  <html> <head> <style> .myDiv {   border: 5px outset red;   background-color: black;       text-align: center; } </style> </head> <body>    <div class="myDiv">   <h2>Guessing Game</h2> </div> <h2> Enter your Guess Number  </h2> <input type="text" id="input1" onkeydown="keydownevent()"/>  <p id="display"> <p id="display2"> <script> <!-- function keydownevent() { document.getElementById("input1");                 n=document.getElementById("input1").value;                 document.getElementById("display").style.color="white";                   x=Math.floor(Math.random()*5 +1);                                   ...

password

Image
  <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> Password form to open your blog </title> </head> <div class="container"> <div class="header"> <h2>Sign Up</h2> </div> <form id="form" class="form"> <div class="form-control"> <label for="username">Username</label> <input type="text" placeholder="Enter Username" id="username" /> <i class="fas fa-check-circle"></i> <i class="fas fa-exclamation-circle"></i> <small>Error message</small> </div> <div class="form-control"> <label for="username">Email</label> <input type="email" placeholder="Enter Email" id=...