W3.CSS Introduction Last Updated : 02 Mar, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report What is W3.CSS?W3.CSS is a modern framework with built-in responsiveness and easy to learn and use compared to other CSS frameworks.It aims to speed up and simplify web development and support modern responsive devices like Mobile, Laptop, Tablet and Desktop.W3.CSS was designed to be a high-quality alternative to Bootstrap.How to use W3.CSS on a webpage?W3.CSS is free for everyone to use. Anyone can use it by simply linking the style in their webpage. There are two ways to include W3.CSS on the website: Include W3.CSS from this link as mentioned below: HTML <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> Download W3.CSS from here and use it.Example: HTML <!DOCTYPE html> <html> <head> <!-- Adding W3.CSS file through external link --> <link rel="stylesheet" href= "https://www.w3schools.com/w3css/4/w3.css"> </head> <body> <!-- w3-container is used to add 16px padding to any HTML element. --> <!-- w3-center is used to set the content of the element to the center. --> <div class="w3-container w3-center"> <!-- w3-text-green sets the text color to green. --> <!-- w3-xxlarge sets font size to 32px --> <h2 class="w3-text-green w3-xxlarge"> Welcome To GFG </h2> </div> <div class="w3-container"> <!-- w3-text-red sets the text color to red. --> <p class="w3-text-red"> GeeksforGeeks is a Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes etc. </p> </div> </body> </html> Output: Comment More infoAdvertise with us Next Article W3.CSS Margin A aditya_taparia Follow Improve Article Tags : CSS W3.CSS Similar Reads CSS Introduction CSS (Cascading Style Sheets) is a language designed to simplify the process of making web pages presentable.It allows you to apply styles to HTML documents by prescribing colors, fonts, spacing, and positioning.The main advantages are the separation of content (in HTML) and styling (in CSS) and the 4 min read Introduction to Tailwind CSS Tailwind CSS is a modern, utility-first class framework that allows developers to style their websites directly within HTML using concise utility classes. Unlike traditional CSS, Tailwind CSS promotes rapid development by eliminating the need to write custom styles for every component. With over 40% 4 min read SASS Introduction Sass is the short form of Syntactically Awesome Style Sheet. It is an upgrade to CSS. Cascading Style Sheets (CSS) serve as the foundation of web styling, dictating the visual aesthetics and layout of websites. However, as web development projects increase in complexity, managing CSS files can becom 3 min read W3.CSS Margin W3.CSS has many facilities of classes to easily style elements in HTML. It includes various responsive margin classes for modification of the appearance of the element. The list of margin classes are as follows: Sr. No. Class Name Description 1. w3-margin It adds 16px of margin to all the sides of t 2 min read W3.CSS Padding W3.CSS has many facilities of classes to easily style elements in HTML. It includes various responsive padding classes for modification of the appearance of the element. There are two types of padding classes: Numbered Padding ClassesSized Padding Classes Numbered Padding Classes: These classes add 3 min read W3.CSS Effects W3.CSS provides web developers with various effects. They can broadly be classified into three divisions. They are: OpacityGrayscaleSepiaOpacity Effects:There are four opacity effect classes: Sr. No. Class Name Description 1. w3-opacity-min The opacity of the targeted element is set to 0.75. 2. w3-o 4 min read Like