1 What is Grid layout system 2 What are the different possib
1. What is Grid layout system?
2. What are the different possible ways to create CSS files?
Solution
1)Grid layout system:
A Grid System is a design technique. It can be used for print designs, web designs, app designs, paintings, anything in which a layout is required. A Grid Framework is a technical representation of a Grid System. It could and could not be responsive
2) different possible ways to create CSS files
There are three ways of inserting a style sheet:
External style sheet
Internal style sheet
External Style Sheet
With an external style sheet, you can change the look of an entire website by changing just one file!
Each page must include a reference to the external style sheet file inside the <link> element. The <link> element goes inside the <head> section
Internal Style Sheet
An internal style sheet may be used if one single page has a unique style.
Internal styles are defined within the <style> element, inside the <head> section of an HTML page
Inline Styles
An inline style may be used to apply a unique style for a single element.
To use inline styles, add the style attribute to the relevant element. The style attribute can contain any CSS property.
The example below shows how to change the color and the left margin of a <h1> element
Inline style
