Posts

How To Create Simple website

Image
 Simple Web page Design  HTML CODE  <header>   <div class="container">     <h1>Code With Angry </h1>   </div> </header> <nav>   <div class="container">     <a href="#">Home</a>     <a href="#">About</a>     <a href="#">Services</a>     <a href="#">Contact</a>   </div> </nav> <div class="login-container">   <div class="login-box">     <h2>Login Here </h2>     <form>       <input type="text" placeholder="Username" required>       <input type="password" placeholder="Password" required>       <input type="submit" value="Login">        <p class="link">Don't have an account<br>       <a href="#">Sign up </a> here</a></p...

Top 5 Animation Project

  Search Box Animation Project  HTML CODE  <div class="searchbox">    <input type="text" class="searchInput" placeholder="Search">    <button class="searchButton" href="#" >       <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">   <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/> </svg>       <i class="fal fa-search"></i>           </button> </div> CSS CODE  <style>   /* body{       background-image: linear-gradient(to right, #cb2d3e,#ef473a);    }*/        .searchbox {       position: absolute;       top: 50%;       left...

How to create Application Form use to Html and Css || how to use html and Css in mobile

Image
  APPLICATION FORM 

How TO Design Web Page || Login Page and Navigation bar animation Project Code [Html, Css and JavaScript ]

Image
Web Design                                HTML CODE  </head> <body>     <div class="main">         <div class="navbar">             <div class="icon">                 <h2 class="logo">Code With Angry</h2>             </div>             <div class="menu">                 <ul>                     <li><a href="#">HOME</a></li>                     <li><a href="#">ABOUT</a></li>                     <li><a href="#">SERVICE</a></li> ...