W3.CSS is a modern CSS framework designed to be lightweight, responsive, and easy to use. It is free to use and requires no external dependencies like JavaScript or jQuery.
To use W3.CSS in your project, include the following link tag in the head of your HTML file:
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="w3-container w3-blue">
<h1>Hello W3.CSS</h1>
</div>
</body>
</html>