🔥FLOTING ACTION BUTTON 💯
💯FLOTING ACTION BUTTON:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Floating Action Button</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
}
.fab-container {
position: fixed;
bottom: 30px;
right: 30px;
}
.fab {
width: 60px;
height: 60px;
background-color: #FF5722;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s, box-shadow 0.3s;
cursor: pointer;
}
.fab:hover {
background-color: #E64A19;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<div class="fab-container">
<div class="fab">+</div>
</div>
</body>
</html>
Comments
Post a Comment