An open API service indexing awesome lists of open source software.

https://github.com/ximilsoft/floating-button

A collection of HTML and CSS snippets for creating floating action buttons on your website. You can add buttons for Messenger and WhatsApp with customizable styles.
https://github.com/ximilsoft/floating-button

bootstrap bootstrap5 floating-button font-awesome

Last synced: 5 months ago
JSON representation

A collection of HTML and CSS snippets for creating floating action buttons on your website. You can add buttons for Messenger and WhatsApp with customizable styles.

Awesome Lists containing this project

README

          

# Floating Button

A collection of HTML and CSS snippets for creating floating action buttons on your website. You can add buttons for Messenger and WhatsApp with customizable styles.

## Messenger (HTML & CSS & Font Awesome)

```html

.float {
position: fixed;
width: 60px;
height: 60px;
bottom: 20px;
right: 20px;
background-color: #168AFF;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 3px #999;
z-index: 100;
}
.my-float {
margin-top: 16px;
}




```

## WhatsApp (HTML & CSS & Font Awesome)

```html

.float {
position: fixed;
width: 60px;
height: 60px;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 3px #999;
z-index: 100;
}
.my-float {
margin-top: 16px;
}




```

## Messenger (Bootstrap & Font Awesome)

```html



```

## WhatsApp (Bootstrap & Font Awesome)

```html



```

## Support (Bootstrap & Font Awesome)

```html



```