<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.cn/lib/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="https://www.w3schools.cn/lib/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>云下载字形</h2>
<p>云下载图标:<span class="glyphicon glyphicon-cloud-download"></span></p>
<p>云下载图标作为链接:
<a href="#">
<span class="glyphicon glyphicon-cloud-download"></span>
</a>
</p>
<p>按钮上的云下载图标:
<button type="button" class="btn btn-default btn-sm">
<span class="glyphicon glyphicon-cloud-download"></span> 从云端下载
</button>
</p>
<p>样式链接按钮上的云下载图标:
<a href="#" class="btn btn-info btn-lg">
<span class="glyphicon glyphicon-cloud-download"></span> 从云端下载
</a>
</p>
<p>Unicode:
<span class="glyphicon"></span>
</p>
</div>
</body>
</html>