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