Posts

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...