Bootstrap Icons CSS
<head>
<title>Bootstrap-Icons</title>
<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">
</head>
<body class="container">
<p>Some Bootstrap-icons:</p>
<i class="glyphicon glyphicon-cloud"></i>
</body>
Try it
Google-Icon CSS
<head>
<title>Bootstrap-Icons</title>
<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">
</head>
<body class="container">
<p>Some Bootstrap-icons:</p>
<i class="glyphicon glyphicon-cloud"></i>
</body>
Try it
Font Icons CSS
<head>
<title>Font-Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<p>Some Font- icons:</p>
<i class="fa fa-cloud"></i>
</body>
Try it