forked from Dogfalo/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
48 lines (40 loc) · 1.16 KB
/
buttons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>Documentation - Materialize</title>
<!-- CSS -->
<link href="../../../bin/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<div class="row">
<div class="col s6 container">
<h4>
Anchors
</h4>
<a class="btn-flat waves-effect waves-red" href="#">
btn-flat waves-red
</a>
<a class="btn-flat btn-large waves-effect waves-red" href="#">
btn-flat btn-large waves-red
</a>
<h4>
Buttons
</h4>
<button class="btn-flat waves-effect waves-red">
btn-flat waves-red
</button>
<button class="btn-flat btn-large waves-effect waves-red">
btn-flat btn-large waves-red
</button>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="../../../bin/materialize.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
});
</script>
</body>
</html>