Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Saumyojit

    Java Decoding no of ways and printing each decode message

    Question in short: print The encoded message in how many ways can it be decoded and print each decoded message of evry encoded message 1 represents A ...26 is z and 04 or 06 ... is invalid I have tried a bit and wrote pseudocode (not actual java code) so please check it . I have covered...
  2. Saumyojit

    HTML & CSS BACKground image and back- color

    <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="./style.css"> </head> <body style="background-color:lightblue;"> </body> </html> body { background-image:url("pass.jpeg"),url("skin.jfif"); background-repeat: no-repeat,no-repeat; /* any background...
  3. Saumyojit

    HTML & CSS CONTENT PROPERTY

    <!DOCTYPE html> <html> <body style="background-color:lightblue;"> <h2>height of Image is larger than Display Red block</h2> <p>CUT OFF for background color to show is 44px(less than 44px). Height of block associated with the below text is 44px or less than that </p> <p class="hz"...
  4. Saumyojit

    HTML & CSS Required attribute

    <!DOCTYPE html> <html> <body> <h1>The select required attribute</h1> <p>The required attribute specifies that the user is required to select a value before submitting the form:</p> <form action="/action_page.php"> <select name="cars" id="cars" required> <option value=" ">None</option>...
  5. Saumyojit

    HTML & CSS Background problemn

    <div id="rt"></div> this line i have written in index.html file #rt { background-color: red; width:70%; height: 300px; } this part i have written in .css file . Output is showing the right : A red background color block is showing . NOw if i use inline css here, there is no blue...
Back
Top Bottom