x
1
2
<html>
3
<head>
4
<style>
5
.btn
6
{
7
border: none;
8
color: white;
9
padding: 15px 30px;
10
text-align: center;
11
text-decoration: none;
12
display: inline-block;
13
font-size: 16px;
14
cursor: pointer;
15
margin:5px;
16
border-radius:5px;
17
}
18
19
.btn-primary
20
{
21
background-color:#0d6efd;
22
}
23
24
.disabled {
25
opacity: 0.6;
26
cursor: not-allowed;
27
}
28
</style>
29
</head>
30
<body>
31
<h1>CSS Buttons</h1>
32
<a class="btn btn-primary">Login enabled</a>
33
<a class="btn btn-primary disabled">Login disabled</a>
34
</body>
35
</html>