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

Html Maquree Image Tag code

Image
Looking here easy  html marquee  code  <!Doctype html> <html> <head> <body> <marquee direction="up"> <img src="girl.jpeg"></img> </marquee> </body> </html>  image Previous Next

Easy and simple Marquee code

Image
 MARQUEE CODE IN HTML  DIRECTION  LECT RIGHT  CENTER  UP DOWN  .   FORMATING LEFT CODE <!DOCTYPE HTML> <HTML> <HEAD> <TITLE>  Left direction </TITLE> </HEAD> <BODY BGCOLOR="BLUE"> <MARQUEE direction="Left">  My content is real  </MARQUEE> </BODY> </HTML> FORMATING  LEFT  CODE Left direction My content is real <!DOCTYPE HTML> <HTML> <HEAD> <TITLE> RIGHT DIRECTION </TITLE> </HEAD> <BODY> <MARQUEE DIRECTION="RIGHT">    Looking here rigrt direction </MARQUEE> </BODY> </HTML> RIGHT direction My content is real FORMATING  CENTER CODE  <!DOCTYPE HTML> <HTML> <HEAD> <TITLE>   CENTER DIRECTION </TITLE> </HEAD> <BODY> ...

Rbm configrution CODE

Image
<!DOCTYPE HTML> <HTML> <HEAD> <TITLE> USING COLOR MAX VALUE </TITLE> </HEAD> <BODY  text="rgb(255,0,0)"> </h2> Welcome to the world of html </h2> </body> </HTML>  OUTPUT:- WELCOME TO THE WORLD  OF HTML CREATING  OF FORM  <!DOCTYPE HTML> <HTML> <TITLE> FORM </TITLE> </HEAD> <BODY> STARTING A FORM  <FORM> <FORM </FORM> EADING FORM  </BODY> <HTML>     OUTPUT: STARTING  A FORM  FORM EANDING A FORM  WORKING WITH THE INPUT ELEMENT  <!DOCTYPE HTML>  <HTML> <HEAD> <BODY> <FORM> Enter your name:<input> </FORM> </BODY> </HTML>  USING THE INPUT ELEMENT , YOU CAN ADD THE FOLLOWING FIELDS ON A FORM  TEXT FIELD  PASSWORDFIELD  HIDDEN FIE...

How to type code css background color

 The css background   color  are used to defines the background  effects for elements , Css background properties   Background-color Background-Image Background-repeat Background-Attachement Background-POSITION  BACKGROUND CODE <!Doctype html> <html> <head> Body { Background:-color:Lightblue; } </style> </head> <H1> Hello!</h1> </Body> </Html> Body { Background:-color:Lightblue; } Hello!

Css colors code

Colors are specified using predefined color names or  Rgb HEX NSL RGBA HSCA NSL     Looking here  css codeing  <!Doctype html> <html> <head> <body> <style> <H1 style="background-color:orange;"> Orange</h1> <h2 style ="background-color:Blue;"> Blue</h2> <H3 style="Background -color:black;"> </h3> <h4 style=background-color:Pink;"> Pink</h4> </style> </head> </body> </html> 

welcome to css

CSS STAND FOR CASCADING STYLE SHEETS      CASECADING referes to the ways css applies one style on top of another   style sheets  control the look and feel of  web documents   css html work hand in hand  Html   sorts out this page structure 

validating Forms

Image
As you already  learn that  that you can validation an html , from using the on submit submit attribute of the form element Required field  Phone number User name and password Time  Date  Creadit card Zip code  Let's Disscourse each of the  field validation of defalut 

Formating with html Physical style elements

HTML iser physical style elements  to change the  apperence text  , If you want to text  appear paticular style  such as build bold italic , You must physica style  elements foe example     The B Element - Display the text in bold  The element -Display the text in the italic  The small element -The display the in small font size The SUP element -Display  the text as superscript   Displaying Plain Text  <!Doctype html> <html> <head> <body> Here the display the plain text in html document  </body> </html>  Display the bold text  <!Doctype> <html> <head> <body> <b> Here display the bold text </p> </body> </html>  Display the italic text  <!Doctype html> <head> <title> here text italic </title> </head> <body...

How to create pre code

Use for pre tag code Same design show on the web page As like show below code. <Html> <Head> <Title>This is the pre code demo<\Title> <\Head> <Body> <Pre> ◆◆◆ ◆◆◆ ◆◆◆ ◆◆◆ ◆◆◆.       ◆◆ ◆◆◆◆◆◆◆ ◆◆◆.         ◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆ ◆◆◆ &#128581;&#128581; &#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882; ◆◆...

Create new project in MVC

Image
App_data App_start Content Script Global.asax  Web.config   To create the new controler in an ASP.NET (MVC) Open the exiting  MVC web application  Right click the controller folder in the solution  explore window on the right side the screen  Select Add ←controller , The folder dialog box is displayed   Replace the name given in the controller name  text box with  my home controller  Ensure that the Empty MVC CONTROLLER OPTION IS SELECTED UNDER THE TEMPLATE DROP DOWN LIST  Click the add button The controller is create  and the my home controller  Select  file save all to save the application Select File  Exit to exit microsoft visual stdio  <%@ Application Language="C#" %> <%@ Import Namespace="System.ComponentModel.DataAnnotations" %> <%@ Import Namespace="System.Web.Routing" %> <%@ Import Namespace="System.Web.DynamicData" %> <scr...

Html inage tag code

 Easy  coe and  simple  ing tag code  <!Doctype html> <html> <head> <title>  Image tag  </title> </head> <body> <p> This is the image tag code </p> <img src="img" size="20" height="20" > Image </img> </body> </html> 

Asp.net readio button

Image
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!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:RadioButtonList ID="RadioButtonList1" runat="server">         <asp:ListItem>Name </asp:ListItem>         <asp:ListItem>Location</asp:ListItem>         <asp:ListItem>Contact no</asp:ListItem>         <asp:ListItem>Select</asp:ListItem>         <asp:ListItem></asp:ListItem>     </asp:Rad...

Employee data sheet

Image
First open  ms excel  select clolumns and select al borders  Write data  u underline words   i italic b Bold word   then save as