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