Posts

css animation easy code

Css animation code <!Doctype html> <html> <head> <style> div { width:100ps; height:100px; background-color:red; -webkit-animation-name:exmple; -webkit-animattion-duration:4s; animation-name:exmple; animation-douration:4s; } @-webkit-keyframes examples { 0%{background-color:red;{ } 25% {background-color:red; } 50%{background-color:yellow;} 75%  {background-color:pink;} { @keyframes exmple{ 0%  {background-color:red;} 25%{  backgound-color; yellow'}  100% {background-color-green;} </style> </head> <body> <p>animation </p> </body> </html> output:------

how to creat template code

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> how to creat template code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">     <div>          </div>     <asp:Panel ID="Panel1" runat="server" BackColor="#339933" BorderColor="#339933"          BorderStyle="Dotted" ForeColor="Black" Height="200px" HorizontalAlign="Center">  <font size="30"></font>         Web Technology    </font>     </asp:Panel>     <asp:Ima...

New FOrm create

New Form create First name Last name Email id     Submit

How to create form in html code

How to create form in html code <!Doctype html> <html> <head> <title> Form normal </title> </head> <body> <table border="1" <caption>  create accounnt </caption> <tr> <th>First Name </th> <th< input type="text" size="20"</th></tr> <tr> <th> Second Name /th> <th< input type="text" size="20"</th></tr> <tr> <th> Last Name < /th> <th< input type="text" size="20"</th></tr> <tr> <th> Date of Birth/th> <th< input type="text" size="20"</th></tr> <tr> <th> Address /th> <th< input type="text" size="20"</th></tr> </table> </body> </html> Form normal create accounnt

Different background color

Image
HI learn diffenent background color <!Doctype html> <html> <head> <stylr type="text/css"> .fool1 { background-color:green; color:white; } .fool2 { background-color:blue; color:yellow; } fool3{ background-color:inherit; color:inhert; font-weight;normal; } </style> </head> <body> <div class="fool1"> <h1 class="bar1"> hello world!!!!!!!!!!!!</h1></div> <div class="fool2"> <h2 class="bar2"> hello world,,,,,, </h2> </div> <div class="fool3"> <h3 class="bar1"> Hello world3  </h3> </div> </body> </html> .fool1 { background-color:green; color:white; } .fool2 { background-color:blue; color:yellow; } fool3{ background-color:inherit; color:inhert; font-weight;normal; } hello world!!!!!!!!!!!! hello wor...

Setting the background color

SETTING THE BACKGROUND COLOR  <!Doctype html> <head>  <Title> Bgcolor</Title> </head> <body style="background-color#ff0000;"> <h1 style="background-color:#yellow;"> HEADING </H1> <P style="background-color:rgb(175,0,0);">Hello world</p> </body> </html> output👎 Bgcolor HEADING Hello world Previous

MARQUEE CODE DOWN IMAGE TAG

Image
<!doctype> <html> <head> <title> image tag </title> </head> <body> <marquee direction="doun"> <img src="girlimage.jpeg">  hello coder </img></marquee> </body> </html> code learn here very easy CODEING STAR Previous