Easiest HTML Calculator Eample Code
This example is meant for educational purposes only, and that is why the code is kept to bare minimum. Were it an actual published calculator it would need, among other things, error handling and validation code added. As an example for educational purposes it's excellent. More ...
How to Code HTML Lists
A list is an arrangement of text about related items, usually arranged vertically. The items may, or may not be arranged in a specific order Readers like lists because a list is more readable than a block of text and provides order in a more easily understandable way. More ...
HTML Linking Basics
Many people have difficulty linking their webpage to other webpages and media. In this article, you learn how to create relative links from any webpage to any other webpage in a directory structure, even to a specific location in another webpage. Plus you learned about a couple of useful link tag attributes. More ...
Providing Alternate and Title Text for an Image
The alt and title attributes are both used to display text related to an image. When an image fails to load the text in the alt attribute is displayed. The title attribute is use to display popup text. More ...
Checkbox Basics
A checkbox is a type of input element for a form. A checkbox is similar to a radio button except that a radio button can be part of a group, so a previously selected radio button automatically de-selects. Whereas checkboxes are each independent so you can have multiple checkboxes checked at the same time. More ...
Keywords Meta Tag Generator
Free online keywords Meta tag generator. Paste your webpage html code into the text box, enter how many keywords you want in your keyword meta tag. The html code for a keyword meta tag webpage will be generated. More ...
HTML5 Nav Element
The nav element provides a container for a block of navigational links. You should not place every stray link in a nav element. Applications such as parsers and screen readers for visually challenged users use the nav element to identify major navigation blocks. More ...
Easy Code to Add Bing Site Search to Your Website
There are several ways you can add site search to your website. This artilce provides the code for Bing site search, just paste this code into the desired location on your website. More ...
Text Features
There is a series of html tags that you can use to configure features of your text like boldness, italics, strike though, underline, and more. More ...
HTML Table Basics
Use of an html table has become the most common method used for general webpage layout. Style Sheets can provide much more accurate web page layout, but the implementation of style sheets between different browser versions is inconsistent. More ...
How to Use a Meta Redirect
A Meta Redirect is a META tag that, when a visitor arrives at your webpage, automatically redirects their browser to a different webpage. There are several reasons why you might want to use a meta redirect. More ...
Make an HTML Element Editable
HTML5 provides the contenteditable attribute which can make most elements editable. This article provides code to make a div editable. More ...
