Skip to content

Instantly share code, notes, and snippets.

@yadavanuj1996
Created February 3, 2019 07:17
Show Gist options
  • Save yadavanuj1996/9d4bc0b3e6ca23d2e7a423c56753cbf5 to your computer and use it in GitHub Desktop.
Save yadavanuj1996/9d4bc0b3e6ca23d2e7a423c56753cbf5 to your computer and use it in GitHub Desktop.
Use of Glyphicons in Bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
<title>Glyphicon with Bootstrap</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<p>Mail : <i class="glyphicon glyphicon-envelope"></i></p>
<p>Music : <span class="glyphicon glyphicon-music"></span></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment