Tag Archive | ERP genwhizz

HTML | Tags | Presentation Tags

These are just three of the ten options available to indicate how text can appear in XHTML. The full list is bold, italic, monospaced, underlined, strikethrough, teletype, larger, smaller, superscripted, and subscripted text. <b>: Anything that appears in a <b> element is displayed in bold. <!DOCTYPE HTML— <p>This is <b>Bold Text</b></p> </html> <i>: The content […]

HTML | Tags | Pharse Tags

          The following elements are not just for presentational purposes; they also describe something about their content. <em>: The content of an <em> element is intended to be a point of emphasis in your document, and it is usually displayed in italicized text. <!DOCTYPE HTML— <p>This is the <em>Emphasis Text</em> </p> […]

HTML | Tables

HTML tables are very basic but can be very powerful when used correctly. At their base level, tables can organize data into rows and columns. The table definition itself is defined and delimited by <table> tags Rows of data are defined and delimited by <tr> (table row) tags.Table cells (individual pieces of data) are defined […]

HTML | Form

HTML forms simply place a handful of GUI controls on the user agent screen to allow the user to enter data. The controls can allow text input and selection of pre-defined options from a list, radio buttons or check boxes, or other standard GUI controls. Every <form> element should carry at least two attributes:     […]

HTML | Tags | Paragraph & Align

Paragraph: The <p> element offers another way to structure your text. Each paragraph of text should go in between an opening <p> and closing </p> tag. Elements can all carry the universal attributes: align class id style title dir lang xml:lang <DOCTYPE HTML– <p> This is First Paragraph </p> <p> This is Second Paragraph </p> […]