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