ShapeYourPath
(current)
Run Code
Live Code Editor- Materialize CSS Responsive Layouts
Source Code
<!DOCTYPE html> <html lang="en"> <head> <!--Let browser know the website is optimized for mobile--> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content=""> <!--Import Google Icon Font--> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> <!--Import materialize.css--> <!-- Compiled and minified CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" /> <title>Materialize CSS Row Example</title> <style type="text/css"> p{font-size:18px;} h2{font-size:28px;} </style> </head> <body> <div class="container"> <h1 class="center-align">Materialize CSS Row</h1> <p class="center-align"> Materialize CSS row is a mandatory part of the grid system.It is created with the help of .row class. </p> <div class="row red lighten-1"> <div class="center-align white-text"> <b>Shape Your Path</b> </div> </div> </div> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> </body> </html>
Output :
Running