Posts

Showing posts from February, 2021

BOOTSTRAP

Image
  Bootstrap  bootstrap is used to flexible the website which make the website to use in different devices.    Faster and Easier Web-Development. It creates Platform-independent web-pages. It creates Responsive Web-pages. It designed to be responsive to mobile devices too. It is Free! Available on www.getbootstrap.com Popular Extendable Reusable Responsive Consistent and efficient design Extended features out of the box Open source  Compatible with all browsers Thousands of themes designed for Bootstrap New versions and updates over the years

CSS Intro

Image
  Cascading Style Sheets  ( CSS )  CSS  stands for  C ascading  S tyle  S heets CSS describes  how HTML elements are to be displayed on screen, paper, or in other media CSS  saves a lot of work . It can control the layout of multiple web pages all at once External stylesheets are stored in  CSS files The selector points to the HTML element you want to style. The declaration block contains one or more declarations separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon. Multiple CSS declarations are separated with semicolons, and declaration blocks are surrounded by curly braces. All CSS Simple Selectors Selector Example Example description # id #firstname Selects the element with id="firstname" . class .intro Selects all elements with class="intro" element.class p.intro Selects only <p> elements with class="intro" * * Selects all elements element p Selects all <p> elements elem...