Posts

Showing posts from March 25, 2013

== & === operators in HTML

Image
                                                                                                                                               by   G.R

Single Quote & div in HTML

Image
by   G.R

Multipurpose Internet Mail Extensions (MIME)

Image
by   G.R

HTML & HTML5

Image
by   G.R

Types of CSS

Image
by   G.R

Requirements for comprehensive exam (UQE)

Image
   NOte: UQE forms are available at Abdul Wahab Photocopy shop. your are directed to collect these forms from photocopy shop and submit complete admission forms for UQE with RS 20 not later than 1 March 2013

HTML code for 3 different triangles and square shape

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Assignment of Triangles</title> <script type="text/javascript">     function triangle_1st(){         for(y=1;y<=10;y++){             for(x=1;x<=y;x++){                 //         Author   ~~~~ me.atiq ~~~~                 document.write("*");             }            document.write("<br />");         }  ...