Get buttons to share on social networks and program them

-1

They could advise me on where to get these types of buttons to share on social networks and how to program them to share different content ..

    
asked by Marvin Morales 21.11.2017 в 00:06
source

2 answers

0

It will depend on how you want to program it ....

You can start by looking:

FACEBOOK link

TWITTER link

    
answered by 21.11.2017 в 00:12
0

You can:

1) Make your own button

2) You can search for online button generators

3) You can google also, with something like "Boton de facebook para web"

input {
border: 2px solid #324a7c;
width: 200px;
height: 50px;
font-family: monospace;
font-size: 25px;
color: white;
background-color: #3B5998;
font-weight: 750;
border-radius: 12px;
position: absolute;
top: 50%; right: 0; left: 0; margin: 0 auto;
}

input:hover {
 transform: scale(1.1);
 transition: all .9s;
}
<input type="button" value="Facebook">
    
answered by 21.11.2017 в 01:47