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