FORM FIELDS These fields can be added to your forms: Text field Password field Hidden field Text area Check box Radio button Drop-down menu Submit button Reset button Image button TEXT FIELD Text fields are one line areas that allow the user to input text. SETTINGS: Below is a listing of valid settings for text … Continue reading
A form is simply an area that can contain form fields. Form fields are objects that allow the visitor to enter information – for example text boxes, drop-down menus or radio buttons. When the visitor clicks a submit button, the content of the form is usually sent to a program that runs on the server. … Continue reading
Frames can divide the screen into separate windows. Each of these windows can contain an HTML document. A file that specifies how the screen is divided into frames is called a frameset. If you want to make a homepage that uses frames you should: make an HTML document with the frameset make the normal HTML … Continue reading
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
HTML Headings HTML headings are defined with the <h1> to <h6> tags. Example: <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3> Where the <h1> tag is represent the very big heading and <h6> tag is representing the small heading. Headings Are Important Use HTML headings for headings only. Don’t use headings … Continue reading
The essential tags that are required to create a HTML document are: <HTML>………….</HTML> <HEAD>………….</HEAD> <BODY>………….</BODY> HTML Tag <HTML> The <HTML> tag encloses all other HTML tags and associated text within your document. It is an optional tag. You can create an HTML document that omits these tags, and your browser can still read it and … Continue reading