Tables are used on websites for two major purposes: The obvious purpose of arranging information in a table The less obvious – but more widely used – purpose of creating a page layout with the use of hidden tables. Using tables to divide the page into different sections is an extremely powerful tool. Almost all … Continue reading
Links are the most fundamental part of the World Wide Web. It is the links that tie it all together. IMAGE LINKS If you want to make an image work as a link, the method is exactly the same as with texts. You simply place the <a href> and the </a> tags on each side … Continue reading
Links are the most fundamental part of the World Wide Web. It is the links that tie it all together. There are three different kinds of links you can have on your website: Links to anchors on the current page (Internal). Links to other pages within the current site (Local) Links to pages outside the … Continue reading
HTML Formatting Tags HTML uses tags like <b> and <i> for formatting output, like bold or italic text. Often <strong> renders as <b>, and <em> renders as <i>. However, there is a difference in the meaning of these tags: <b> or <i> defines bold or italic text only. <strong> or <em> means that you want … Continue reading
HTML elements can have attributes Attributes provide additional information about an element Attributes are always specified in the start tag Attributes come in name/value pairs like: name=”value” Attribute Example HTML links are defined with the <a> tag. The link address is specified in the href attribute: Example <a href=”http://www.abyssminds.com”>This is a link</a> Always Quote Attribute … Continue reading