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