Author: admin

How to use/implement CSS

CSS can be implemented in three ways in an HTML document(webpage): Inline CSS To style a specific HTML element, Inline…

What is CSS

Css stands for cascading style sheet. HTML is not able to change html elements or tags look and feel or…

<address> tag HTML

address tag is used for Contact Information in HTML Example: <html><body><address>H-39<br/>Writers Lane<br>90-20-30<br>India.</address></body></html>

<abbr> tag HTML

In HTML, <abbr> tag is used For Acronynm or Abbrevations. Example: <html><body><p><abbr title="United States Of America">USA</abbr> was discovered by Columbus</p></body></html>

<q> tag HTML

In HTML <q> tag specifies Short quotations. Example <html><body><q>Short quotation example.</q></body></html>

<p> Paragraph tag

HTML <p> tag creates a paragraph block to write paragraph. It is a block level element. Example <html><body><p>Hello world, How…

Input – HTML

HTML input elements are used with HTML <form> element to collect user input. Following are the HTML input elements to…