Navigation html code

How to add JavaScript code to HTML

This article may be helpful if you want to add some JavaScript code to a web page. That is needed in various situations. A good example is adding Google Analytics or other tracking scripts to the site. Also, another possible option is adding custom dynamic code that processes form events. …
Continue reading
Pattern with waves

How to change color of a SVG element

As you know, the SVG files are very popular in web development. Many sites use this format because it allows making small files. They will load much faster then the regular JPG or PNG files. That's very important because the fast websites may have better rankings in the search engines. …
Continue reading
Sticky memo notes

Box shadow in CSS

If your goal is to make a visually pleasant website, then adding custom CSS shadows may be a great choice. It's a much better option than using images or backgrounds with shadow effects drawn in some graphical editor. The CSS code is rendered by the browser and is faster to …
Continue reading
Large chain in the middle

HTML button that acts like a link

If you are making some web application and you need to redirect user to another page, you can create a button that will act link a link. Regular <a href="#"> tag may not be suitable in some cases, for example, when you have complex logic or unusual content on a …
Continue reading
Contact us text

Simple PHP contact form

In this article, you will learn on how to build simple contact form in native PHP language without adding any other frameworks or libraries. This code may be useful when you want to build custom site or web application and your preference is to avoid any complex 3rd party tools. …
Continue reading