CSS Comments

Comments are ignored by browsers. CSS comments are generally written to explain your code. Comments are single or multiple lines statement and written within /*…………*/ . Comments can help document … Read more

PHP Comments

Comments are not executed as a part of the program. In this chapter you will learn about “How to write comments in PHP?”. Comments are generally used for documenting purpose. … Read more

HTML <a> Tag

The <a> tag (anchor tag) in HTML is used to create a hyperlink on the webpage. An anchor tag requires the href attribute which specifies the URL to be linked to. HTML … Read more

Javascript – document.getElementById() method

The document.getElementById() method returns the element of specified id. The getElementById() is a DOM (Document Object Model) method. This method returns null if no elements with the specified ID exists. The ID should be unique within a … Read more

Images in HTML

HTML <img> tag is used to display image on the web page. HTML <img> tag is an empty tag that contains attributes only. Closing tags are not used in HTML image … Read more

PHP Echo Statement

echo is used to output data to the screen. PHP echo statement can be used to print the string, multi-line strings, escaping characters, variable, array, etc. The echo statement can be used … Read more

PHP Introduction

PHP stands for Hypertext Preprocessor. PHP is an open-source, interpreted, and object-oriented scripting language. It is server side scripting language. PHP is interpreted language. It can be embedded into HTML. … Read more