Tag Archive | web page html

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 | 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 | 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 | HyperText Markup Language

        Hypertext Markup Language (HTML) enables you to mark up text so that it canfunction as hypertext on the Web. The term markup comes from printing; editorsmark up manuscript pages with funny-looking symbols that tell the printer how toprint the page. HTML consists of its own set of funny-looking symbols that tell […]