Preloader with Materialize https://materializecss.com/preloader.html HTML <div class="progress"> <div class="indeterminate"></div> </div>
Category: Responsive CSS Frameworks
https://materializecss.com/modals.html HTML <!– Modal Trigger –> <a class="waves-effect waves-light btn modal-trigger" href="#modal1">Modal</a> <!– Modal Structure –> <div id="modal1" class="modal"> <div class="modal-content"> <h4>Modal Header</h4> <p>A bunch of text</p> </div> <div class="modal-footer"> <a href="#!" class="modal-close waves-effect waves-green btn-flat">Agree</a> </div> </div> JS document.addEventListener('DOMContentLoaded', function() { var elems = document.querySelectorAll('.modal'); var instances = M.Modal.init(elems, options); }); // Or with…
Basic Example https://materializecss.com/cards.html <div class="row"> <div class="col s12 m6"> <div class="card blue-grey darken-1"> <div class="card-content white-text"> <span class="card-title">Card Title</span> <p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p> </div> <div class="card-action"> <a href="#">This is a link</a> <a href="#">This…
https://materializecss.com/mobile.html The navbar is fully contained by an HTML5 Nav tag. Inside a recommended container div, there are 2 main parts of the navbar. A logo or brand link, and the navigations links. You can align these links to the left or right. Drag Out Menu This plugin includes several options for customizing the menu….
https://materializecss.com/getting-started.html Material Design Created and designed by Google, Material Design is a design language that combines the classic principles of successful design along with innovation and technology. Google’s goal is to develop a system of design that allows for a unified user experience across all their products on any platform. First of all create a…
https://getbootstrap.com/docs/4.3/components/navbar/
https://getbootstrap.com/docs/4.0/components/modal/ Modal can be triggered in 2 ways data-toggle=”modal” data-target=”#exampleModalLive” in ‘button’ tag OR with javascript onclick=”$(‘#exampleModalLive2’).modal()”
https://getbootstrap.com/docs/4.0/components/card/
Bootstrap 4 Grid System Bootstrap’s grid system is built with flexbox and allows up to 12 columns across the page. If you do not want to use all 12 columns individually, you can group the columns together to create wider columns: Grid Classes The Bootstrap 4 grid system has five classes: .col- (extra small devices…
Other utilities, such as borders and colors, are also often used together with containers : Example Responsive Containers You can also use the .container-sm|md|lg|xl classes to create responsive containers. The max-width of the container will change on different screen sizes/viewports: Class Extra small<576px Small≥576px Medium≥768px Large≥992px Extra large≥1200px .container-sm 100% 540px 720px 960px 1140px .container-md…