Use on the webTotal Use [ 3184 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/897e33f9e3a332412306fde88792ee83?family=Body+Swipers+Staggered" 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/897e33f9e3a332412306fde88792ee83?family=Body+Swipers+Staggered);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Body Swipers Staggered";
src: url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.eot");
src: url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/897e33f9e3a332412306fde88792ee83.svg#Body Swipers Staggered")format("svg");
}
2CSS rules to specify fonts
font-family: "Body Swipers Staggered";