Posts

Simple Login page with HTML and CSS

Image
Add CSS to your css file body {     padding-bottom: 1000;    background-color: #B2DFDB;      width: 600px; } .main-container {     flex-direction: column;     display: flex;          align-items: center;     justify-content: center; }  .semi-container {      margin-top: 90px;      display: flex;      flex-direction: column;      align-items: center;      justify-content: center;      padding-bottom: 30px;      width: 320px;      height: 500px;      background-color: white;      border-radius: 10px;      border: 1px solid #80CBC4;  }    .text1 {            display: flex;      flex-direction: column;      align-items: center;      backgroun...

Websites icons for HTML and CSS

Image
 Download all the icons for YouTube project videos

My Simple YouTube with HTML and CSS for 2024

Image
My simple project using HTML and CSS  You will found all the resources use in creating  this YouTube project here,I with the source codes here.  Copy and paste this code inside the body tag in HTML file <body>  <div class="header">      <div class="left-side">       <img class="ham-img" src="img/ham.png">           <img class="you-img" src="img/you.png">      </div>                  <div class="middle-side">          <input class="search-bar" type="search" placeholder="Search">   <button class="search-button"><img class="search-img" src="img/search.png"</button>    <button class="mic-button"><img class="mic-img" src="img/mic.png"</button>           </div>           ...