Adding special characters to your website can sometimes become tricky. Some editors interpret the code correctly and some don’t. And sometimes everything looks fine on your computer then when you upload the page to your website, the characters are all wrong. So the best way to insert them is to use the entity numbers or [...]
How to create HTML Links that are page jumps?
HTML links that are page jump are links that take you to specific part on the same page. They are used on long pages to make it easier for the user to click on a link rather than scroll down the page.
This is a HTML cheat sheet for the most commonly used tags and attributes. Most tags have an opening and closing tag. Basic Tags <html></html> Defines the html document <head></head> This defines the information about the html document such as the title and meta tag information. <body></body> This is the main content of the document [...]
Do you need to embed MP3 audio files, such as podcasts or songs or other audio files on your website? There are several ways to do this and here you’ll learn how to do this without requiring an external player like QuickTime or Windows Media Player. Steps to Embed Audio / mp3 Files on your [...]
The best html editor is one that keeps and maintains clean code. Unfortunately most html editors like dreamweaver, coffeecup, Microsoft Frontpage, Kompozer etc.. add unwanted html tags and code to your files. This can easily cause issues and browser incompatibility, and make your code hard to maintain and a mess to clean up. Using something [...]
Before you start creating a website ask yourself what the theme of your site is? A theme is the focus of your site and should only be one to three words, for example “home cooking” and “kid party ideas”. It’s what your site is all about. Whether you are creating a new online business, or [...]
An HTML img tag is used to insert an image on a webpage. For example the following image is added to this page using the following code. This is a very basic insert with no tricks like borders or shadows. <img src=”http://www.yoursite.com/images/nameofimage.jpg” alt=”html img tag” /> yoursite = your own domain name and nameofimage = [...]