-
Notifications
You must be signed in to change notification settings - Fork 0
/
Icons.html
48 lines (47 loc) · 891 Bytes
/
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
<html>
<head>
<link href="css/bootstrap.css" rel="stylesheet"/>
<script src="js/bootstrap.js"></script>
<link href="css/font-awesome.css" rel="stylesheet"/>
<basefont color="red"/>
<style>
.a
{
min-height:200px;
border:10px solid #acde3e;
border-radius:5px;
box-shadow:0px 0px 10px 3px black inset;
text-align:center;
padding-top:3%;
}
.ic
{
font-size:110px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-2 a text-center">
<i class="fa fa-home ic fa-spin"></i>
</div>
<div class="col-sm-2 a">
<i class="fa fa-bell ic fa-pulse"></i>
</div>
<div class="col-sm-2 a">
<i class="fa fa-twitter ic fa-pulse"></i>
</div>
<div class="col-sm-2 a fa-pulse">
<i class="fa fa-youtube ic"></i>
</div>
<div class="col-sm-2 a">
<i class="fa fa-whatsapp ic"></i>
</div>
<div class="col-sm-2 a">
<i class="fa fa-facebook ic"></i>
</div>
</div>
</div>
</body>
</html>