Loading Button
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET" type="text/css" href="web.css">
<title>web design</title>
</head>
<body>
<h1>Loading Button</h1>
<button class="load"><i class="fa fa-spinner fa-spin"></i>Loading</button>
<button class="load"><i class="fa fa-circle-o-notch fa-spin"></i>Loading</button>
<button class="load"><i class="fa fa-refresh fa-spin"></i>Loading</button>
</body>
</html>
CSS Loading Button Style
.load{
background-color: green;
border: none;
color: #fff;
padding:12px 24px;
font-size:16px ;
}
.fa{
margin-left:-12px;
margin-right:8px;
}
No comments:
Post a Comment