a65 Posted January 12, 2013 Share Posted January 12, 2013 (edited) <div id="logo"><img src="logo.jpg"</div> <div id="login">login page </div> <table> <tr><td >Name</td><td width><input type=text name=myname></td></tr> <tr><td>Age</td><td><input type=text name=myage></td></tr> <tr> <td> </td> <td><input type=submit value=submit> <input name="Reset" type=reset value=Reset></td> </tr> </table> </div> css code is #logo { float:left; width: 50px; height:10px; } #login { width:100%; font:"Courier New", Courier, mono; font_size:50px; height:50px; margin_left:150px; background:blue; margin_top:10px; Edited January 12, 2013 by a65 Quote Link to comment Share on other sites More sharing options...
Love2c0de Posted January 12, 2013 Share Posted January 12, 2013 (edited) Can you explain a little more about the problem, your question is very vague. The image is displaying in the top left corner already. You left out the closing '/>' on your <img> tag and also some of the <input tags. I've added double quotes around your HTML attribute values also. I updated your code: <div id="logo"><img src="logo.jpg" alt="yourImg" /></div> <div id="login">login page</div> <table> <tr> <td >Name</td> <td width><input type="text" name="myname"></td> </tr> <tr> <td>Age</td> <td><input type="text" name="myage"></td> </tr> <tr> <td> </td> <td><input type="submit" value="submit" /><input name="Reset" type="reset" value="Reset" /></td> </tr> </table> </div> Also, there is an extra closing div </div> tag, but not opening div. Post your full code please Regards, L2c. Edited January 12, 2013 by Love2c0de Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.