The ::selection CSS pseudo-element

The ::selection CSS pseudo-element
The ::selection selector coordinates the part of a component that is chosen by a client. There are just three properties that ::selection will work with : color background (background-color, background-image) text-shadow Example: Default  Output: Example: Make the selected...

HTML5 DOWNLOAD ATTRIBUTE

HTML5 DOWNLOAD ATTRIBUTE
Introduction HTML5 accompanied new APIs, new input type, and in addition new attributes for Forms. One of the upgrades that accompanied HTML5 is the Download attributes. How about we Start As we probably am aware, there are numerous documents that are not downloaded specifically. For...

HTML List

HTML List
In HTML, we are having 3 types of list. Ordered List Unordered List Definition List 1) Ordered List :- It is also called as "Number list", it is used into provide number into the list item .An Ordered list begins with the <ol> tag. Every list item begins with the <li> tag. Example: <ol> <li>HTML</li> <li>CSS</li> <li>JAVASCRIPT</li> <li>PHP</li> </ol> 2)...

CSS3 Introduction

CSS3 Introduction
What is it? CSS3 is the most recent standard for CSS.  CSS3 is totally in reverse good with prior variants of CSS. CSS3 Modules The advancement of CSS3 will be part up into 'modules'. The old determination was just too huge and complex to be overhauled as one, so it has been separated...

HTML5 Introduction

HTML5 Introduction
What is New in HTML5? The <!DOCTYPE> declaration for HTML5 is very simple. <!DOCTYPE html> The character encoding (charset)is also very simple. <meta charset="UTF-8"> New HTML5 Elements New semantic elements like <header> <footer> <nav> <section>...

CSS Introduction

CSS Introduction
What is CSS? CSS stands for Cascading Style Sheets. CSS defines how HTML elements are to be displayed. We can inherit multiple styles from one location to other. It contains use collection of different style, these styles we can applying for html elements. In CSS style are saved with the...

HTML Introduction

HTML Introduction
What is HTML? HTML stands for Hypertext Markup Language. HTML is a language for describing web pages. HTML is a markup language. A markup language is a set of markup tags. The tag describes document content. HTML document contain HTML tags and plain text. HTML document are also called web pages. It...