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