Tag: BIM NOtes 3rd sem
Web 2018 old paper Solution || BIM STUDY NOTES
year 2018 Q.no 11 Checkout question from question section.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<!DOCTYPEhtml> <html> <head> <title></title> <styletype="text/css"> * { box-sizing:border-box; } . a { height:100px; width:1000px; border:2pxsolidblack; display:block; /*float:left;*/ } . b { display:block; border:2pxsolidblack; height:300px; width:250px; float:left; } </style> </head> <body> <divclass="a"><h1>HeaderGoesHere</h1></div> <divclass="b">b</div> <divclass="c">c</div> <divclass="d">d</div> <divclass="e">d</div> </body> </html> |
Q.no 12 . Write a source code to create the login form that contains a textbox for username, a textbox for password and a submit button. Make the following validations (both username and password isrequired and cannot be the same and length should be greater than […]
Continue Reading