filmov
tv
HTML CSS Tutorial for Beginners | Inline CSS | Internal CSS | External CSS
Показать описание
In this video, you will learn about what is CSS and how it can be embed with html web page . CSS stands for cascading style sheets, It is the language we use to style an HTML document. CSS describes how HTML elements should be displayed on screen, paper, or in other media. CSS saves lot of time and work because it can control the layout of all web pages all at once. There are three ways to insert CSS in Html web page.
External CSS:- With the help of external css you can change the look of entire website by changing just one file. External css is defined by link element in head section of the html web page.
Internal CSS:- Internal css may be used if one single HTML page has a unique style.The internal style is defined inside the style element, inside the head section.
Inline CSS:- An inline style may be used to apply a unique style for a single tag or element.
To use inline styles, add the style attribute to the relevant element. The style attribute can contain any CSS property.
#html_CSS
External CSS:- With the help of external css you can change the look of entire website by changing just one file. External css is defined by link element in head section of the html web page.
Internal CSS:- Internal css may be used if one single HTML page has a unique style.The internal style is defined inside the style element, inside the head section.
Inline CSS:- An inline style may be used to apply a unique style for a single tag or element.
To use inline styles, add the style attribute to the relevant element. The style attribute can contain any CSS property.
#html_CSS