forked from AmanSingour/Bootstrap-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14 Glyph Icons.html
52 lines (40 loc) · 1.63 KB
/
14 Glyph Icons.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery lib -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<br>
<div class="container">
<h2>Gylphicons</h2>
<p>Envelope <span class="glyphicon glyphicon-envelope"></span></p>
<p>Search <span class="glyphicon glyphicon-search"></span></p>
<p>Heart <span class="glyphicon glyphicon-heart"></span></p>
<p>Print <span class="glyphicon glyphicon-print"></span></p>
<!--? glyphicon-star-empty -->
<p>Star <span class="glyphicon glyphicon-star-empty"></span></p>
<!--* gylphicon with button -->
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-search"></span> Search
</button>
<button type="button" class="btn btn-warning">
<span class="glyphicon glyphicon-search"></span> Search
</button>
<br>
<br>
<!--* gylphicon with Link -->
<a href="#" class="btn btn-success btn-lg">
<span class="glyphicon glyphicon-print"></span> Print
</a>
</div>
</body>
</html>