-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4-font-awesome.html
85 lines (82 loc) · 3.67 KB
/
4-font-awesome.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css-me/glyph.css" rel="stylesheet">
<link href="css-me/fonts.css" rel="stylesheet">
<link href="css-me/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row col-lg-12">
<h1>Using other fonts</h1>
<p>Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.</p>
<h1>Google fonts</h1>
<p>Another really nice resource for fonts is <a href="http://www.google.com/fonts#">Google Fonts</a>.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-3 col-sm-6">
<div class="panel panel-default">
<div class="panel-heading text-center">
<h4>Heading</h4>
</div>
<div class="panel-body">
<blockquote>
<p>We do want to add some text and click a button</p>
<footer>Says me</footer>
</blockquote>
<a class="btn btn-default" href="#">Default</a>
<a class="btn btn-primary" href="#">Primary</a>
<a class="btn btn-danger" href="#"><i class="glyphicon glyphicon-apple"></i>Attention</a>
<a class="btn btn-danger" href="#"><i class="fa fa-devweek"></i> <strong>Dev</strong>Week</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-3">
<div class="panel panel-success">
<div class="panel-heading">
<i class="glyphicon glyphicon-apple"></i>
Heading
</div>
<div class="panel-body">
Body
<button class="btn btn-sm btn-success">Small button</button>
<button class="btn btn-xs btn-primary">Extra small button</button>
</div>
</div>
</div>
<div class="col-lg-4 col-md-3 col-sm-3">
<div class="panel panel-primary">
<div class="panel-heading">
<i class="glyphicon glyphicon-agreement"></i>
Heading
</div>
<div class="panel-body">
<div class="btn-group-vertical">
<button class="btn btn-default">We</button>
<button class="btn btn-default">are</button>
<button class="btn btn-default">in a</button>
<button class="btn btn-primary">group</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>