@bikash44 out of the box, that carousel is image only, but you can do what you like to it. I just put a h1 inside the <a>, with this css:
width: 100%;
position: absolute;
top: 0;
left: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
Which seemed to work. There is a carousel that has text already built in:
also did you see this pen re text inputs?:
@weirdjon great. I recommend taking a look at the sass files here:
https://github.com/Dogfalo/materialize/tree/v1-dev/sass/components
and in particular for input fields:
https://github.com/Dogfalo/materialize/blob/v1-dev/sass/components/forms/_input-fields.scss
You can see exactly what rules are being set, and if you use Sass in your projects, you can set new values at root, rather than overriding, in your own css.