Basic concepts of CSS
Css :- Css is a language that describes the style of an HTML document. Css describes how to HTML elements should be displayed , is a simply designed language intended to simplify the process making web -pages presentable. CSS stands for Cascading Style Sheets. CSS allows you to apply styles to web pages. More importantly CSS enables you to do this independent of the HTML that makes up each web-page. CSS control the layout of multiple web-pages all at once. It save a lot of work. # Types of CSS with their Syntax Move to types of CSS ,so there are Three types of CSS; Inline CSS Internal or Embedded CSS External CSS # Inline CSS :- Inline CSS applied directly to HTML elements using the Style attribute. For example :- Output is : Output is : # Internal or Embedded CSS :- When using Internal CSS , we must add a new tag ,<style> , inside the <head> tag. For example :- Output is : # External CSS :- External ...