संदेश

सितंबर, 2023 की पोस्ट दिखाई जा रही हैं

css

  <! DOCTYPE html > < html lang = "en" > < head >< title > javascript practice </ title >   < link rel = "stylesheet" href = "js.css" >   < script src = "script.js" >   </ script >   < script >   var ram = 50 ;   var shyam = 45 ;   if ( ram > shyam ){     alert ( "JAY SHREE RAM" );}     else {       alert ( "JAY SHREE SHYAM " );   }; var x = confirm ( "do yo like my work" ); if ( x ){ alert ( "thanks for like" );} else {   alert ( "its ok" ) };     </ script > </ head > < body >     < h1 > this is javascript practice </ h1 > < p > console.log < br > if()document.write(statemente is true) < br > if()document.write(statemente is true) </ p >< br > < p > fn , ln , age , Fn, Ln </ p >< br > < p > var , leg , const, </ p >< br ...

html tutorial

    < b > background-color </ b >< br > < p > background-image:url() < br >  background-size:cover/content < br >  background-repeat(norepeat,repeat,xrepeat,yrepeat,round) < br > background-position </ p > < br > < div class = "box-first" >     < h1 > hello world </ h1 >     < p > this is a box tag and div class tag </ p >     < h2 > content-box </ h2 >     < h2 > padding(content to border space) </ h2 >     < h2 > background-attachment(scroll,fixed,local) </ h2 >     < h3 > border-style </ h3 >     < h3 > MARGIN = border to webpage space </ h3 >     < h3 > border width (thin,thick,medium) < br >         border color(red,green,...)         border style(solid,dotted,dashed,double,groove,ridge,...

color

  #000000     Black,#000080     Navy,#00008B     DarkBlue     ,#0000CD     MediumBlue,#0000FF     Blue,#006400     DarkGreen,#008000     Green,#008080     Teal,#008B8B     DarkCyan,#00BFFF     DeepSkyBlue,     #00CED1     DarkTurquoise,     #00FA9A     MediumSpringGreen,#00FF00     Lime,     #00FF7F     SpringGreen,     #00FFFF     Aqua,#00FFFF     Cyan,     #191970     MidnightBlue,     #1E90FF     DodgerBlue,#20B2AA     LightSeaGreen,     #228B22     ForestGreen,     #2E8B57     SeaGreen,#2F4F4F     DarkSlateGray,     #2F4F4F     DarkSlateGrey,     #32CD32     LimeGreen,#3CB371     MediumSeaGreen,     #40E0D0   ...

html

  <! DOCTYPE html > < html lang = "en" > < head >< title > javascript practice </ title >   < link rel = "stylesheet" href = "js.css" >   < script src = "script.js" >   </ script >   < script >   var ram = 50 ;   var shyam = 45 ;   if ( ram > shyam ){     alert ( "JAY SHREE RAM" );}     else {       alert ( "JAY SHREE SHYAM " );   }; var x = confirm ( "do yo like my work" ); if ( x ){ alert ( "thanks for like" );} else {   alert ( "its ok" ) };     </ script > </ head > < body >     < h1 > this is javascript practice </ h1 > < p > console.log < br > if()document.write(statemente is true) < br > if()document.write(statemente is true) </ p >< br > < p > fn , ln , age , Fn, Ln </ p >< br > < p > var , leg , const, </ p >< br ...

html form

  < html >     < head >< title > practice </ title >         </ head >     < body >     < form >< table border = "5" bgcolor = "yellow" color = "white" >         < tr >< td > username: </ td >< td > < input type = "text" name = "username" ></ td ></ tr > < tr >< td > email: </ td > < td > < input type = "text" name = "email" ></ td ></ tr > < tr >< td > password: </ td >< td > < input type = "password" name = "password" ></ td ></ tr > < tr >< td > country </ td > < td > < select >     < option > india </ option >     < option > bangladesh </ option >     < option > usa </ option >     < option > nepal </ option > ...