Tag Archive | genwhizz pondicherry

Types of Coding in Webdesign | Web Development

Basic web development(Coding types) might consist of: Client side coding: HTML5 and CSS3 Flash Java Script jQuery Microsoft Silverlight AJAX Server side coding: PHP (open source) ASP (Microsoft proprietary) ActiveVFP (open source) CSP, Server-Side ANSI C ColdFusion (Adobe proprietary, formerly Macromedia, formerly Allaire) CGI Erlang, with Linux, Yaws, Mnesia, Erlang (LYME) solution stack Groovy (programming […]

HTML | Tags | Lists

There are many reasons you might want to add a list to your pages.You can create three types of lists in XHTML: Unordered lists ,which are like lists of bullet points Ordered lists ,which use a sequence of numbers or letters instead  of bullet points Definition lists ,which allow you to specify a term and […]

HTML | Comments

Comments: HTML comments are fairly simple to include in your document, as they have a simple format. A comment in your document might resemble the following: <!– This is a comment –> Anything after    <  !–    until the closing    –>    will not be displayed. It can still be seen in the source code for  the […]

HTML | Tags | Headings | Breaks

  Headings: XHTML offers six levels of headings, which use the elements <h1> ,<h2> ,<h3> ,<h4> ,<h5> and <h6>. Browsers display the <h1> element as the largest of the six and <h6> as the smallest. Most browsers display the contents of the <h1> ,<h2> and <h3> elements  larger than the default size of text in […]

HTML | Tags

There are lots of tags and they are all in pairs; there are   opening tags  and   closing tags .  The closing tag is always slightly different from the opening tag in that it has a forward slash after the first angled bracket:</ html >. A pair of tags and the content these include are known […]

HTML | Attributes

Tag Attributes: Tags support one or more attributes. These attributes are included in attribute_name=”attribute_value” <p align=”2″> Rules for Attributes:  Any attributes in an HTML tag need to appear after the HTML tag name.  The attribute name must be followed immediately by an equal sign (=).  The attribute value needs to come immediately after the equal […]