mdb-ui-kit/dist/test.html

51 lines
1.8 KiB
HTML
Raw Normal View History

<html>
2014-10-18 20:12:02 +04:00
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
2015-03-09 19:10:44 +03:00
<!-- Include roboto.css to use the Roboto web font, material.css to include the theme and ripples.css to style the ripple effect -->
2015-03-18 04:47:02 +03:00
<link href="css/roboto.min.css" rel="stylesheet">
<link href="css/material.min.css" rel="stylesheet">
<link href="css/ripples.min.css" rel="stylesheet">
2014-10-18 20:12:02 +04:00
</head>
2014-10-18 20:12:02 +04:00
<body>
2014-10-18 20:12:02 +04:00
<!-- Your site -->
2014-10-18 20:12:02 +04:00
<h1>You can add your site here.</h1>
2014-10-18 20:12:02 +04:00
<h2>To ensure that material-design theme is working, check out the buttons below.</h2>
2014-10-18 20:12:02 +04:00
<h3 class="text-muted">If you can see the ripple effect on clicking them, then you are good to go!</h3>
2014-10-18 20:12:02 +04:00
<p class="bs-component">
<a href="javascript:void(0)" class="btn btn-default">Default</a>
<a href="javascript:void(0)" class="btn btn-primary">Primary</a>
<a href="javascript:void(0)" class="btn btn-success">Success</a>
<a href="javascript:void(0)" class="btn btn-info">Info</a>
<a href="javascript:void(0)" class="btn btn-warning">Warning</a>
<a href="javascript:void(0)" class="btn btn-danger">Danger</a>
<a href="javascript:void(0)" class="btn btn-link">Link</a>
</p>
2014-10-18 20:12:02 +04:00
<!-- Your site ends -->
2014-10-18 20:12:02 +04:00
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="js/ripples.min.js"></script>
<script src="js/material.min.js"></script>
2014-10-18 20:12:02 +04:00
<script>
$(document).ready(function() {
2015-03-09 19:10:44 +03:00
// This command is used to initialize some elements and make them work properly
2014-10-18 20:12:02 +04:00
$.material.init();
});
</script>
2014-10-18 20:12:02 +04:00
</body>
</html>