Use on the webTotal Use [ 3608 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ae069110e938038e3006faabb9e9266f?family=robo+pimp+slap+Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/ae069110e938038e3006faabb9e9266f?family=robo+pimp+slap+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "robo pimp slap Italic";
src: url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.eot");
src: url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ae069110e938038e3006faabb9e9266f.svg#robo pimp slap Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "robo pimp slap Italic";