HTML guide – Logical Tags

There are 9 logical tags each requiring a closing tag: * Strong: I am strong * Emphasis: I am emphasized * Abbreviation: I am abbreviated * Citation: Citation * Code: I am programming code * Definition: Definition * Keyboard: Quite like keyboard strokes * Sample: Sample * Programming Variable: Programming Variable Like the physical level tags, these tags can be nested. So: Some text will be displayed as: Some text Logical and Physical tags revisited You would have noticed that and are displayed quite like and physical tags. But remember Logical tags do not...

read more

Basic Text & Font Tags

New Paragraph: Starts a new paragraph and creates a blank line between your new paragraph and the one above it. The closing tag is , but is not mandatory. Line Break: This will break your text to the next line. Two tags is equivalent to one tag. There’s no closing tag needed for this one. Bold: Closing tag is Underline: Closing tag is Italics: Closing tag is Centering text: Closing tag is Left aligning text: Just use for the closing tag Right aligning text: Just use for the closing tag Change text color: The ending for any font tag is If you want more colors, you can also use...

read more

HTML Element

An HTML element is an individual component of an HTML document. HTML documents are composed of a tree of HTML elements and other nodes, such as text nodes. Each element can have attributes specified. Elements can also have content, including other elements and text. HTML elements represent semantics, or meaning. For example, the title element represents the title of the document. In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. Tags are composed of the name of the element, surrounded by angle brackets. An end tag also has a slash...

read more

HTML Tips

When you begin designing your HTML web pages, you may find that many HTML courses fall short when it comes to providing you with special effect HTML codes and tips. However, there are many special effect HTML codes that will enable you to enhance your visitors experience tremendously. When trying to decide what HTML codes to use within your web pages, keep in mind, if it doesn’t enhance your web page, it’s probably best to leave it out, as the more special effects you add to your page, the longer your page will take to load. In addition, prior to using any of these HTML codes and...

read more