โ Css Rule Set
โฅ The whole structure is called a ruleset. The term ruleset is often referred to as just rule. NOte the names of the individual parts:
โ Selecting Multiple Elements
โฅ You can select many elements by using coma(,)
โ Adding Custom Font Link
โฅ Using Link tag you can import font in HTML
โ Padding, Border, Margin
โ Padding โฅ The space around the contact.
โ Border โฅ The solid line that is just outside the padding.
โ Margin โฅ The space around the outside of the border.
โ Hover Effects
โฅ On taking the curson on the element the h2 color will change #fff #000;
โฅ Bootstrap is the most popular css framework globally and got instant popularity because of its responsive design. almost anything, from alerts to modals to navigation bars, is supported by default making is easy to build amazing website. getbootstrap.com
โ Tailwind CSS
โฅ Tailwind css is a utility-first css framework that is different that other frameworks like bootstrap where you get pre-designed components. Tailwind requires the least amount of learning an dis easy to use
โฅ An inline property dose not start on new and only takes up as much width as necessary.Any height and width properties will have no effect on inline elements. This example overrides the default setting of <li> bullet points and presents them in one line.
โ Display : Block
โฅ Display Block property shows the elements one by one like a building. Every block element appears in a new line. margin. padding and width work in display block.
โ <!DOCTYPE> โฅ Defines the document.
โ <html> โฅ Defines an html document
โ <head> โฅ Contains metadata/information for the document
โ <title> โฅ Defines a title for the document
โ<body> โฅ Defines the document's body
โ<h1> to <h6> โฅ Defines HTML Heading
โ <p> โฅ Defines a paragraph
โ <br> โฅ inserts a single line break
โ <hr> โฅ Defines a thematic change in the content
โ <!--..--> โฅ Defines a comment