Posts

BIRD CREATED WITH CSS

 <div class='bird'>  <div class='eye'>  </div>  </div>  .bird {  display:block;  width:100px;  height:150px;  background-color:#0089FF;  margin-left:25px;  border-radius;50px 50px 100px 0;  transform:rotate Z(30deg);  position:relative;  }  .bird:before {  content:'';  display:block;  position:absolute;  width:0px;  height:0px;  border:15px solid transparent;  border-left:25px solid #FFCA00;  transform:rotate Z(-30deg);  right:-29px; top:2px;  }  .bird:after {  content:'';  display:block;  position:absolute;  display;block;  width:60px;  height:90px;  background-color:#006ECD;  border-radius:50px 50px 100px 0;  transform:rotate Z(90deg);  top:40px;  left:-20px;  }  .eye {  display:block;  width:17px;  height:17px; ...

Simple basic html easy way to create and understand html

Image
Easy Html program simple way to understand basic program Simple HTML program Creating/writing a easy basic HTML program in simple way detailed... First we have to know about HTML. What is HTML :-              ~~  Hypertext Markup Language. ~~ How does it work :-                     ~~ Tagging  text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages. ~~ How to understand it ? :-                          ~~ Very easy , Just think the HTMl also a Human body , starting program open ( A baby born.) Head in the first / top , next body and matter like background screen, movement etc.. ( Body and a person character )  at last program closes .                               ...